source: vendor/google/apiclient-services/src/ChromeManagement/GoogleChromeManagementVersionsV1ReportingData.php

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

Upload project files

  • Property mode set to 100644
File size: 3.4 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\ChromeManagement;
19
20class GoogleChromeManagementVersionsV1ReportingData extends \Google\Collection
21{
22 protected $collection_key = 'policyData';
23 /**
24 * @var string
25 */
26 public $browserExecutablePath;
27 protected $extensionDataType = GoogleChromeManagementVersionsV1ReportingDataExtensionData::class;
28 protected $extensionDataDataType = 'array';
29 protected $extensionPolicyDataType = GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData::class;
30 protected $extensionPolicyDataDataType = 'array';
31 /**
32 * @var string
33 */
34 public $installedBrowserVersion;
35 protected $policyDataType = GoogleChromeManagementVersionsV1ReportingDataPolicyData::class;
36 protected $policyDataDataType = 'array';
37 /**
38 * @var string
39 */
40 public $profilePath;
41
42 /**
43 * @param string
44 */
45 public function setBrowserExecutablePath($browserExecutablePath)
46 {
47 $this->browserExecutablePath = $browserExecutablePath;
48 }
49 /**
50 * @return string
51 */
52 public function getBrowserExecutablePath()
53 {
54 return $this->browserExecutablePath;
55 }
56 /**
57 * @param GoogleChromeManagementVersionsV1ReportingDataExtensionData[]
58 */
59 public function setExtensionData($extensionData)
60 {
61 $this->extensionData = $extensionData;
62 }
63 /**
64 * @return GoogleChromeManagementVersionsV1ReportingDataExtensionData[]
65 */
66 public function getExtensionData()
67 {
68 return $this->extensionData;
69 }
70 /**
71 * @param GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData[]
72 */
73 public function setExtensionPolicyData($extensionPolicyData)
74 {
75 $this->extensionPolicyData = $extensionPolicyData;
76 }
77 /**
78 * @return GoogleChromeManagementVersionsV1ReportingDataExtensionPolicyData[]
79 */
80 public function getExtensionPolicyData()
81 {
82 return $this->extensionPolicyData;
83 }
84 /**
85 * @param string
86 */
87 public function setInstalledBrowserVersion($installedBrowserVersion)
88 {
89 $this->installedBrowserVersion = $installedBrowserVersion;
90 }
91 /**
92 * @return string
93 */
94 public function getInstalledBrowserVersion()
95 {
96 return $this->installedBrowserVersion;
97 }
98 /**
99 * @param GoogleChromeManagementVersionsV1ReportingDataPolicyData[]
100 */
101 public function setPolicyData($policyData)
102 {
103 $this->policyData = $policyData;
104 }
105 /**
106 * @return GoogleChromeManagementVersionsV1ReportingDataPolicyData[]
107 */
108 public function getPolicyData()
109 {
110 return $this->policyData;
111 }
112 /**
113 * @param string
114 */
115 public function setProfilePath($profilePath)
116 {
117 $this->profilePath = $profilePath;
118 }
119 /**
120 * @return string
121 */
122 public function getProfilePath()
123 {
124 return $this->profilePath;
125 }
126}
127
128// Adding a class alias for backwards compatibility with the previous class name.
129class_alias(GoogleChromeManagementVersionsV1ReportingData::class, 'Google_Service_ChromeManagement_GoogleChromeManagementVersionsV1ReportingData');
Note: See TracBrowser for help on using the repository browser.