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 StatusReportingSettings extends \Google\Model
21{
22  protected $applicationReportingSettingsType = ApplicationReportingSettings::class;
23  protected $applicationReportingSettingsDataType = '';
24  /**
25   * @var bool
26   */
27  public $applicationReportsEnabled;
28  /**
29   * @var bool
30   */
31  public $commonCriteriaModeEnabled;
32  /**
33   * @var bool
34   */
35  public $deviceSettingsEnabled;
36  /**
37   * @var bool
38   */
39  public $displayInfoEnabled;
40  /**
41   * @var bool
42   */
43  public $hardwareStatusEnabled;
44  /**
45   * @var bool
46   */
47  public $memoryInfoEnabled;
48  /**
49   * @var bool
50   */
51  public $networkInfoEnabled;
52  /**
53   * @var bool
54   */
55  public $powerManagementEventsEnabled;
56  /**
57   * @var bool
58   */
59  public $softwareInfoEnabled;
60  /**
61   * @var bool
62   */
63  public $systemPropertiesEnabled;
64
65  /**
66   * @param ApplicationReportingSettings
67   */
68  public function setApplicationReportingSettings(ApplicationReportingSettings $applicationReportingSettings)
69  {
70    $this->applicationReportingSettings = $applicationReportingSettings;
71  }
72  /**
73   * @return ApplicationReportingSettings
74   */
75  public function getApplicationReportingSettings()
76  {
77    return $this->applicationReportingSettings;
78  }
79  /**
80   * @param bool
81   */
82  public function setApplicationReportsEnabled($applicationReportsEnabled)
83  {
84    $this->applicationReportsEnabled = $applicationReportsEnabled;
85  }
86  /**
87   * @return bool
88   */
89  public function getApplicationReportsEnabled()
90  {
91    return $this->applicationReportsEnabled;
92  }
93  /**
94   * @param bool
95   */
96  public function setCommonCriteriaModeEnabled($commonCriteriaModeEnabled)
97  {
98    $this->commonCriteriaModeEnabled = $commonCriteriaModeEnabled;
99  }
100  /**
101   * @return bool
102   */
103  public function getCommonCriteriaModeEnabled()
104  {
105    return $this->commonCriteriaModeEnabled;
106  }
107  /**
108   * @param bool
109   */
110  public function setDeviceSettingsEnabled($deviceSettingsEnabled)
111  {
112    $this->deviceSettingsEnabled = $deviceSettingsEnabled;
113  }
114  /**
115   * @return bool
116   */
117  public function getDeviceSettingsEnabled()
118  {
119    return $this->deviceSettingsEnabled;
120  }
121  /**
122   * @param bool
123   */
124  public function setDisplayInfoEnabled($displayInfoEnabled)
125  {
126    $this->displayInfoEnabled = $displayInfoEnabled;
127  }
128  /**
129   * @return bool
130   */
131  public function getDisplayInfoEnabled()
132  {
133    return $this->displayInfoEnabled;
134  }
135  /**
136   * @param bool
137   */
138  public function setHardwareStatusEnabled($hardwareStatusEnabled)
139  {
140    $this->hardwareStatusEnabled = $hardwareStatusEnabled;
141  }
142  /**
143   * @return bool
144   */
145  public function getHardwareStatusEnabled()
146  {
147    return $this->hardwareStatusEnabled;
148  }
149  /**
150   * @param bool
151   */
152  public function setMemoryInfoEnabled($memoryInfoEnabled)
153  {
154    $this->memoryInfoEnabled = $memoryInfoEnabled;
155  }
156  /**
157   * @return bool
158   */
159  public function getMemoryInfoEnabled()
160  {
161    return $this->memoryInfoEnabled;
162  }
163  /**
164   * @param bool
165   */
166  public function setNetworkInfoEnabled($networkInfoEnabled)
167  {
168    $this->networkInfoEnabled = $networkInfoEnabled;
169  }
170  /**
171   * @return bool
172   */
173  public function getNetworkInfoEnabled()
174  {
175    return $this->networkInfoEnabled;
176  }
177  /**
178   * @param bool
179   */
180  public function setPowerManagementEventsEnabled($powerManagementEventsEnabled)
181  {
182    $this->powerManagementEventsEnabled = $powerManagementEventsEnabled;
183  }
184  /**
185   * @return bool
186   */
187  public function getPowerManagementEventsEnabled()
188  {
189    return $this->powerManagementEventsEnabled;
190  }
191  /**
192   * @param bool
193   */
194  public function setSoftwareInfoEnabled($softwareInfoEnabled)
195  {
196    $this->softwareInfoEnabled = $softwareInfoEnabled;
197  }
198  /**
199   * @return bool
200   */
201  public function getSoftwareInfoEnabled()
202  {
203    return $this->softwareInfoEnabled;
204  }
205  /**
206   * @param bool
207   */
208  public function setSystemPropertiesEnabled($systemPropertiesEnabled)
209  {
210    $this->systemPropertiesEnabled = $systemPropertiesEnabled;
211  }
212  /**
213   * @return bool
214   */
215  public function getSystemPropertiesEnabled()
216  {
217    return $this->systemPropertiesEnabled;
218  }
219}
220
221// Adding a class alias for backwards compatibility with the previous class name.
222class_alias(StatusReportingSettings::class, 'Google_Service_AndroidManagement_StatusReportingSettings');
223