source: vendor/google/apiclient-services/src/Verifiedaccess/VerifyChallengeResponseResult.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.7 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\Verifiedaccess;
19
20class VerifyChallengeResponseResult extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $attestedDeviceId;
26 /**
27 * @var string
28 */
29 public $customerId;
30 /**
31 * @var string
32 */
33 public $deviceEnrollmentId;
34 /**
35 * @var string
36 */
37 public $devicePermanentId;
38 /**
39 * @var string
40 */
41 public $deviceSignal;
42 protected $deviceSignalsType = DeviceSignals::class;
43 protected $deviceSignalsDataType = '';
44 /**
45 * @var string
46 */
47 public $keyTrustLevel;
48 /**
49 * @var string
50 */
51 public $profileCustomerId;
52 /**
53 * @var string
54 */
55 public $profileKeyTrustLevel;
56 /**
57 * @var string
58 */
59 public $signedPublicKeyAndChallenge;
60 /**
61 * @var string
62 */
63 public $virtualDeviceId;
64 /**
65 * @var string
66 */
67 public $virtualProfileId;
68
69 /**
70 * @param string
71 */
72 public function setAttestedDeviceId($attestedDeviceId)
73 {
74 $this->attestedDeviceId = $attestedDeviceId;
75 }
76 /**
77 * @return string
78 */
79 public function getAttestedDeviceId()
80 {
81 return $this->attestedDeviceId;
82 }
83 /**
84 * @param string
85 */
86 public function setCustomerId($customerId)
87 {
88 $this->customerId = $customerId;
89 }
90 /**
91 * @return string
92 */
93 public function getCustomerId()
94 {
95 return $this->customerId;
96 }
97 /**
98 * @param string
99 */
100 public function setDeviceEnrollmentId($deviceEnrollmentId)
101 {
102 $this->deviceEnrollmentId = $deviceEnrollmentId;
103 }
104 /**
105 * @return string
106 */
107 public function getDeviceEnrollmentId()
108 {
109 return $this->deviceEnrollmentId;
110 }
111 /**
112 * @param string
113 */
114 public function setDevicePermanentId($devicePermanentId)
115 {
116 $this->devicePermanentId = $devicePermanentId;
117 }
118 /**
119 * @return string
120 */
121 public function getDevicePermanentId()
122 {
123 return $this->devicePermanentId;
124 }
125 /**
126 * @param string
127 */
128 public function setDeviceSignal($deviceSignal)
129 {
130 $this->deviceSignal = $deviceSignal;
131 }
132 /**
133 * @return string
134 */
135 public function getDeviceSignal()
136 {
137 return $this->deviceSignal;
138 }
139 /**
140 * @param DeviceSignals
141 */
142 public function setDeviceSignals(DeviceSignals $deviceSignals)
143 {
144 $this->deviceSignals = $deviceSignals;
145 }
146 /**
147 * @return DeviceSignals
148 */
149 public function getDeviceSignals()
150 {
151 return $this->deviceSignals;
152 }
153 /**
154 * @param string
155 */
156 public function setKeyTrustLevel($keyTrustLevel)
157 {
158 $this->keyTrustLevel = $keyTrustLevel;
159 }
160 /**
161 * @return string
162 */
163 public function getKeyTrustLevel()
164 {
165 return $this->keyTrustLevel;
166 }
167 /**
168 * @param string
169 */
170 public function setProfileCustomerId($profileCustomerId)
171 {
172 $this->profileCustomerId = $profileCustomerId;
173 }
174 /**
175 * @return string
176 */
177 public function getProfileCustomerId()
178 {
179 return $this->profileCustomerId;
180 }
181 /**
182 * @param string
183 */
184 public function setProfileKeyTrustLevel($profileKeyTrustLevel)
185 {
186 $this->profileKeyTrustLevel = $profileKeyTrustLevel;
187 }
188 /**
189 * @return string
190 */
191 public function getProfileKeyTrustLevel()
192 {
193 return $this->profileKeyTrustLevel;
194 }
195 /**
196 * @param string
197 */
198 public function setSignedPublicKeyAndChallenge($signedPublicKeyAndChallenge)
199 {
200 $this->signedPublicKeyAndChallenge = $signedPublicKeyAndChallenge;
201 }
202 /**
203 * @return string
204 */
205 public function getSignedPublicKeyAndChallenge()
206 {
207 return $this->signedPublicKeyAndChallenge;
208 }
209 /**
210 * @param string
211 */
212 public function setVirtualDeviceId($virtualDeviceId)
213 {
214 $this->virtualDeviceId = $virtualDeviceId;
215 }
216 /**
217 * @return string
218 */
219 public function getVirtualDeviceId()
220 {
221 return $this->virtualDeviceId;
222 }
223 /**
224 * @param string
225 */
226 public function setVirtualProfileId($virtualProfileId)
227 {
228 $this->virtualProfileId = $virtualProfileId;
229 }
230 /**
231 * @return string
232 */
233 public function getVirtualProfileId()
234 {
235 return $this->virtualProfileId;
236 }
237}
238
239// Adding a class alias for backwards compatibility with the previous class name.
240class_alias(VerifyChallengeResponseResult::class, 'Google_Service_Verifiedaccess_VerifyChallengeResponseResult');
Note: See TracBrowser for help on using the repository browser.