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
18class Google_Service_AlertCenter_SuspiciousActivitySecurityDetail extends Google_Model
19{
20  public $deviceId;
21  public $deviceModel;
22  public $deviceProperty;
23  public $deviceType;
24  public $iosVendorId;
25  public $newValue;
26  public $oldValue;
27  public $resourceId;
28  public $serialNumber;
29
30  public function setDeviceId($deviceId)
31  {
32    $this->deviceId = $deviceId;
33  }
34  public function getDeviceId()
35  {
36    return $this->deviceId;
37  }
38  public function setDeviceModel($deviceModel)
39  {
40    $this->deviceModel = $deviceModel;
41  }
42  public function getDeviceModel()
43  {
44    return $this->deviceModel;
45  }
46  public function setDeviceProperty($deviceProperty)
47  {
48    $this->deviceProperty = $deviceProperty;
49  }
50  public function getDeviceProperty()
51  {
52    return $this->deviceProperty;
53  }
54  public function setDeviceType($deviceType)
55  {
56    $this->deviceType = $deviceType;
57  }
58  public function getDeviceType()
59  {
60    return $this->deviceType;
61  }
62  public function setIosVendorId($iosVendorId)
63  {
64    $this->iosVendorId = $iosVendorId;
65  }
66  public function getIosVendorId()
67  {
68    return $this->iosVendorId;
69  }
70  public function setNewValue($newValue)
71  {
72    $this->newValue = $newValue;
73  }
74  public function getNewValue()
75  {
76    return $this->newValue;
77  }
78  public function setOldValue($oldValue)
79  {
80    $this->oldValue = $oldValue;
81  }
82  public function getOldValue()
83  {
84    return $this->oldValue;
85  }
86  public function setResourceId($resourceId)
87  {
88    $this->resourceId = $resourceId;
89  }
90  public function getResourceId()
91  {
92    return $this->resourceId;
93  }
94  public function setSerialNumber($serialNumber)
95  {
96    $this->serialNumber = $serialNumber;
97  }
98  public function getSerialNumber()
99  {
100    return $this->serialNumber;
101  }
102}
103