source: vendor/google/apiclient-services/src/Integrations/GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 2.8 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Integrations;
19
20class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery extends \Google\Model
21{
22 protected $firstQueryType = GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::class;
23 protected $firstQueryDataType = '';
24 public $firstQuery;
25 protected $operationModeType = GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode::class;
26 protected $operationModeDataType = '';
27 public $operationMode;
28 protected $secondQueryType = GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::class;
29 protected $secondQueryDataType = '';
30 public $secondQuery;
31
32 /**
33 * @param GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
34 */
35 public function setFirstQuery(GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent $firstQuery)
36 {
37 $this->firstQuery = $firstQuery;
38 }
39 /**
40 * @return GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
41 */
42 public function getFirstQuery()
43 {
44 return $this->firstQuery;
45 }
46 /**
47 * @param GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
48 */
49 public function setOperationMode(GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode $operationMode)
50 {
51 $this->operationMode = $operationMode;
52 }
53 /**
54 * @return GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
55 */
56 public function getOperationMode()
57 {
58 return $this->operationMode;
59 }
60 /**
61 * @param GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
62 */
63 public function setSecondQuery(GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent $secondQuery)
64 {
65 $this->secondQuery = $secondQuery;
66 }
67 /**
68 * @return GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
69 */
70 public function getSecondQuery()
71 {
72 return $this->secondQuery;
73 }
74}
75
76// Adding a class alias for backwards compatibility with the previous class name.
77class_alias(GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery');
Note: See TracBrowser for help on using the repository browser.