-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBotd.php
More file actions
484 lines (433 loc) · 11.3 KB
/
Botd.php
File metadata and controls
484 lines (433 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?php
/**
* Botd.
*
* @category Class
*
* @author Swagger Codegen team
*
* @see https://github.com/swagger-api/swagger-codegen
*/
/**
* Fingerprint Server API.
*
* Fingerprint Server API allows you to search, update, and delete identification events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device.
*
* OpenAPI spec version: 3
* Contact: support@fingerprint.com
* Generated by: https://github.com/swagger-api/swagger-codegen.git
* Swagger Codegen version: 3.0.78
*/
/**
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen
* Do not edit the class manually.
*/
namespace Fingerprint\ServerAPI\Model;
use Fingerprint\ServerAPI\ObjectSerializer;
/**
* Botd Class Doc Comment.
*
* @category Class
*
* @description Contains all the information from Bot Detection product
*
* @author Swagger Codegen team
*
* @see https://github.com/swagger-api/swagger-codegen
*/
class Botd implements ModelInterface, \ArrayAccess
{
/**
* The original name of the model.
*
*/
protected static string $swaggerModelName = 'Botd';
/**
* Array of property to type mappings. Used for (de)serialization.
*
* @var string[]
*/
protected static array $swaggerTypes = [
'bot' => '\Fingerprint\ServerAPI\Model\BotdBot',
'meta' => 'array',
'linked_id' => 'string',
'url' => 'string',
'ip' => 'string',
'time' => '\DateTime',
'user_agent' => 'string',
'request_id' => 'string'];
/**
* Array of property to format mappings. Used for (de)serialization.
*
* @var string[]
*/
protected static array $swaggerFormats = [
'bot' => null,
'meta' => null,
'linked_id' => null,
'url' => null,
'ip' => null,
'time' => 'date-time',
'user_agent' => null,
'request_id' => null];
/**
* Array of attributes where the key is the local name,
* and the value is the original name.
*
* @var string[]
*/
protected static array $attributeMap = [
'bot' => 'bot',
'meta' => 'meta',
'linked_id' => 'linkedId',
'url' => 'url',
'ip' => 'ip',
'time' => 'time',
'user_agent' => 'userAgent',
'request_id' => 'requestId'];
/**
* Array of attributes to setter functions (for deserialization of responses).
*
* @var string[]
*/
protected static array $setters = [
'bot' => 'setBot',
'meta' => 'setMeta',
'linked_id' => 'setLinkedId',
'url' => 'setUrl',
'ip' => 'setIp',
'time' => 'setTime',
'user_agent' => 'setUserAgent',
'request_id' => 'setRequestId'];
/**
* Array of attributes to getter functions (for serialization of requests).
*
* @var string[]
*/
protected static array $getters = [
'bot' => 'getBot',
'meta' => 'getMeta',
'linked_id' => 'getLinkedId',
'url' => 'getUrl',
'ip' => 'getIp',
'time' => 'getTime',
'user_agent' => 'getUserAgent',
'request_id' => 'getRequestId'];
/**
* Associative array for storing property values.
*
* @var mixed[]
*/
protected array $container = [];
/**
* Constructor.
*
* @param mixed[] $data Associated array of property values
* initializing the model
*/
public function __construct(?array $data = null)
{
$this->container['bot'] = isset($data['bot']) ? $data['bot'] : null;
$this->container['meta'] = isset($data['meta']) ? $data['meta'] : null;
$this->container['linked_id'] = isset($data['linked_id']) ? $data['linked_id'] : null;
$this->container['url'] = isset($data['url']) ? $data['url'] : null;
$this->container['ip'] = isset($data['ip']) ? $data['ip'] : null;
$this->container['time'] = isset($data['time']) ? $data['time'] : null;
$this->container['user_agent'] = isset($data['user_agent']) ? $data['user_agent'] : null;
$this->container['request_id'] = isset($data['request_id']) ? $data['request_id'] : null;
}
/**
* Gets the string presentation of the object.
*
*/
public function __toString(): string
{
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
}
/**
* Array of property to type mappings. Used for (de)serialization.
*/
public static function swaggerTypes(): array
{
return self::$swaggerTypes;
}
/**
* Array of property to format mappings. Used for (de)serialization.
*/
public static function swaggerFormats(): array
{
return self::$swaggerFormats;
}
/**
* Array of attributes where the key is the local name,
* and the value is the original name.
*/
public static function attributeMap(): array
{
return self::$attributeMap;
}
/**
* Array of attributes to setter functions (for deserialization of responses).
*/
public static function setters(): array
{
return self::$setters;
}
/**
* Array of attributes to getter functions (for serialization of requests).
*/
public static function getters(): array
{
return self::$getters;
}
/**
* The original name of the model.
*/
public function getModelName(): string
{
return self::$swaggerModelName;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties(): array
{
$invalidProperties = [];
if (null === $this->container['bot']) {
$invalidProperties[] = "'bot' can't be null";
}
if (null === $this->container['url']) {
$invalidProperties[] = "'url' can't be null";
}
if (null === $this->container['ip']) {
$invalidProperties[] = "'ip' can't be null";
}
if (null === $this->container['time']) {
$invalidProperties[] = "'time' can't be null";
}
if (null === $this->container['user_agent']) {
$invalidProperties[] = "'user_agent' can't be null";
}
if (null === $this->container['request_id']) {
$invalidProperties[] = "'request_id' can't be null";
}
return $invalidProperties;
}
/**
* Validate all the properties in the model
* return true if all passed.
*
* @return bool True if all properties are valid
*/
public function valid(): bool
{
return 0 === count($this->listInvalidProperties());
}
/**
* Gets bot.
*/
public function getBot(): BotdBot
{
return $this->container['bot'];
}
/**
* Sets bot.
*
* @param BotdBot $bot bot
*
* @return $this
*/
public function setBot(BotdBot $bot): self
{
$this->container['bot'] = $bot;
return $this;
}
/**
* Gets meta.
*/
public function getMeta(): ?array
{
return $this->container['meta'];
}
/**
* Sets meta.
*
* @param ?array $meta meta
*
* @return $this
*/
public function setMeta(?array $meta): self
{
$this->container['meta'] = $meta;
return $this;
}
/**
* Gets linked_id.
*/
public function getLinkedId(): ?string
{
return $this->container['linked_id'];
}
/**
* Sets linked_id.
*
* @param ?string $linked_id a customer-provided id that was sent with the request
*
* @return $this
*/
public function setLinkedId(?string $linked_id): self
{
$this->container['linked_id'] = $linked_id;
return $this;
}
/**
* Gets url.
*/
public function getUrl(): string
{
return $this->container['url'];
}
/**
* Sets url.
*
* @param string $url page URL from which the request was sent
*
* @return $this
*/
public function setUrl(string $url): self
{
$this->container['url'] = $url;
return $this;
}
/**
* Gets ip.
*/
public function getIp(): string
{
return $this->container['ip'];
}
/**
* Sets ip.
*
* @param string $ip IP address of the requesting browser or bot
*
* @return $this
*/
public function setIp(string $ip): self
{
$this->container['ip'] = $ip;
return $this;
}
/**
* Gets time.
*/
public function getTime(): \DateTime
{
return $this->container['time'];
}
/**
* Sets time.
*
* @param \DateTime $time Time in UTC when the request from the JS agent was made. We recommend to treat requests that are older than 2 minutes as malicious. Otherwise, request replay attacks are possible.
*
* @return $this
*/
public function setTime(\DateTime $time): self
{
$this->container['time'] = $time;
return $this;
}
/**
* Gets user_agent.
*/
public function getUserAgent(): string
{
return $this->container['user_agent'];
}
/**
* Sets user_agent.
*
* @param string $user_agent user_agent
*
* @return $this
*/
public function setUserAgent(string $user_agent): self
{
$this->container['user_agent'] = $user_agent;
return $this;
}
/**
* Gets request_id.
*/
public function getRequestId(): string
{
return $this->container['request_id'];
}
/**
* Sets request_id.
*
* @param string $request_id unique identifier of the user's request
*
* @return $this
*/
public function setRequestId(string $request_id): self
{
$this->container['request_id'] = $request_id;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
*
* @param int $offset Offset
*/
public function offsetExists($offset): bool
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
*
* @param int $offset Offset
*/
public function offsetGet($offset): mixed
{
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
/**
* Sets value based on offset.
*
* @param int $offset Offset
* @param mixed $value Value to be set
*/
public function offsetSet($offset, mixed $value): void
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
*
* @param int $offset Offset
*/
public function offsetUnset($offset): void
{
unset($this->container[$offset]);
}
/**
* Gets the string presentation of the object in a pretty JSON format.
*
*/
public function toPrettyString(): string
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
}