source: vendor/google/apiclient-services/src/AndroidManagement/PersonalUsagePolicies.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 3.1 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\AndroidManagement;
19
20class PersonalUsagePolicies extends \Google\Collection
21{
22 protected $collection_key = 'personalApplications';
23 /**
24 * @var string[]
25 */
26 public $accountTypesWithManagementDisabled;
27 /**
28 * @var bool
29 */
30 public $cameraDisabled;
31 /**
32 * @var int
33 */
34 public $maxDaysWithWorkOff;
35 protected $personalApplicationsType = PersonalApplicationPolicy::class;
36 protected $personalApplicationsDataType = 'array';
37 /**
38 * @var string
39 */
40 public $personalPlayStoreMode;
41 /**
42 * @var bool
43 */
44 public $screenCaptureDisabled;
45
46 /**
47 * @param string[]
48 */
49 public function setAccountTypesWithManagementDisabled($accountTypesWithManagementDisabled)
50 {
51 $this->accountTypesWithManagementDisabled = $accountTypesWithManagementDisabled;
52 }
53 /**
54 * @return string[]
55 */
56 public function getAccountTypesWithManagementDisabled()
57 {
58 return $this->accountTypesWithManagementDisabled;
59 }
60 /**
61 * @param bool
62 */
63 public function setCameraDisabled($cameraDisabled)
64 {
65 $this->cameraDisabled = $cameraDisabled;
66 }
67 /**
68 * @return bool
69 */
70 public function getCameraDisabled()
71 {
72 return $this->cameraDisabled;
73 }
74 /**
75 * @param int
76 */
77 public function setMaxDaysWithWorkOff($maxDaysWithWorkOff)
78 {
79 $this->maxDaysWithWorkOff = $maxDaysWithWorkOff;
80 }
81 /**
82 * @return int
83 */
84 public function getMaxDaysWithWorkOff()
85 {
86 return $this->maxDaysWithWorkOff;
87 }
88 /**
89 * @param PersonalApplicationPolicy[]
90 */
91 public function setPersonalApplications($personalApplications)
92 {
93 $this->personalApplications = $personalApplications;
94 }
95 /**
96 * @return PersonalApplicationPolicy[]
97 */
98 public function getPersonalApplications()
99 {
100 return $this->personalApplications;
101 }
102 /**
103 * @param string
104 */
105 public function setPersonalPlayStoreMode($personalPlayStoreMode)
106 {
107 $this->personalPlayStoreMode = $personalPlayStoreMode;
108 }
109 /**
110 * @return string
111 */
112 public function getPersonalPlayStoreMode()
113 {
114 return $this->personalPlayStoreMode;
115 }
116 /**
117 * @param bool
118 */
119 public function setScreenCaptureDisabled($screenCaptureDisabled)
120 {
121 $this->screenCaptureDisabled = $screenCaptureDisabled;
122 }
123 /**
124 * @return bool
125 */
126 public function getScreenCaptureDisabled()
127 {
128 return $this->screenCaptureDisabled;
129 }
130}
131
132// Adding a class alias for backwards compatibility with the previous class name.
133class_alias(PersonalUsagePolicies::class, 'Google_Service_AndroidManagement_PersonalUsagePolicies');
Note: See TracBrowser for help on using the repository browser.