-
Notifications
You must be signed in to change notification settings - Fork 25
/
RecurringCustomer.php
671 lines (589 loc) · 18.5 KB
/
RecurringCustomer.php
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
<?php
/**
* PHP SDK for Unlimint API v3. All rights reserved.
*/
namespace Cardpay\model;
use \ArrayAccess;
use \Cardpay\ObjectSerializer;
class RecurringCustomer implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $swaggerModelName = 'RecurringCustomer';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerTypes = [
'email' => 'string',
'home_phone' => 'string',
'id' => 'string',
'identity' => 'string',
'ip' => 'string',
'ip_country' => 'string',
'locale' => 'string',
'phone' => 'string',
'user_agent' => 'string',
'work_phone' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerFormats = [
'email' => null,
'home_phone' => null,
'id' => null,
'identity' => null,
'ip' => null,
'ip_country' => null,
'locale' => null,
'phone' => null,
'user_agent' => null,
'work_phone' => null
];
/**
* Array of property to type mappings. Used for (de)serialization
*
* @return array
*/
public static function swaggerTypes()
{
return self::$swaggerTypes;
}
/**
* Array of property to format mappings. Used for (de)serialization
*
* @return array
*/
public static function swaggerFormats()
{
return self::$swaggerFormats;
}
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @var string[]
*/
protected static $attributeMap = [
'email' => 'email',
'home_phone' => 'home_phone',
'id' => 'id',
'identity' => 'identity',
'ip' => 'ip',
'ip_country' => 'ip_country',
'locale' => 'locale',
'phone' => 'phone',
'user_agent' => 'user_agent',
'work_phone' => 'work_phone'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'email' => 'setEmail',
'home_phone' => 'setHomePhone',
'id' => 'setId',
'identity' => 'setIdentity',
'ip' => 'setIp',
'ip_country' => 'setIpCountry',
'locale' => 'setLocale',
'phone' => 'setPhone',
'user_agent' => 'setUserAgent',
'work_phone' => 'setWorkPhone'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'email' => 'getEmail',
'home_phone' => 'getHomePhone',
'id' => 'getId',
'identity' => 'getIdentity',
'ip' => 'getIp',
'ip_country' => 'getIpCountry',
'locale' => 'getLocale',
'phone' => 'getPhone',
'user_agent' => 'getUserAgent',
'work_phone' => 'getWorkPhone'
];
/**
* Array of attributes where the key is the local name,
* and the value is the original name
*
* @return array
*/
public static function attributeMap()
{
return self::$attributeMap;
}
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @return array
*/
public static function setters()
{
return self::$setters;
}
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @return array
*/
public static function getters()
{
return self::$getters;
}
/**
* The original name of the model.
*
* @return string
*/
public function getModelName()
{
return self::$swaggerModelName;
}
const LOCALE_RU = 'ru';
const LOCALE_EN = 'en';
const LOCALE_ZH = 'zh';
const LOCALE_JA = 'ja';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getLocaleAllowableValues()
{
return [
self::LOCALE_RU,
self::LOCALE_EN,
self::LOCALE_ZH,
self::LOCALE_JA,
];
}
/**
* Associative array for storing property values
*
* @var mixed[]
*/
protected $container = [];
/**
* Constructor
*
* @param mixed[] $data Associated array of property values
* initializing the model
*/
public function __construct(array $data = null)
{
$this->container['email'] = isset($data['email']) ? $data['email'] : null;
$this->container['home_phone'] = isset($data['home_phone']) ? $data['home_phone'] : null;
$this->container['id'] = isset($data['id']) ? $data['id'] : null;
$this->container['identity'] = isset($data['identity']) ? $data['identity'] : null;
$this->container['ip'] = isset($data['ip']) ? $data['ip'] : null;
$this->container['ip_country'] = isset($data['ip_country']) ? $data['ip_country'] : null;
$this->container['locale'] = isset($data['locale']) ? $data['locale'] : null;
$this->container['phone'] = isset($data['phone']) ? $data['phone'] : null;
$this->container['user_agent'] = isset($data['user_agent']) ? $data['user_agent'] : null;
$this->container['work_phone'] = isset($data['work_phone']) ? $data['work_phone'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['email'] === null) {
$invalidProperties[] = "'email' can't be null";
}
if ((mb_strlen($this->container['email']) > 256)) {
$invalidProperties[] = "invalid value for 'email', the character length must be smaller than or equal to 256.";
}
if ((mb_strlen($this->container['email']) < 3)) {
$invalidProperties[] = "invalid value for 'email', the character length must be bigger than or equal to 3.";
}
if (!is_null($this->container['home_phone']) && (mb_strlen($this->container['home_phone']) > 18)) {
$invalidProperties[] = "invalid value for 'home_phone', the character length must be smaller than or equal to 18.";
}
if (!is_null($this->container['home_phone']) && (mb_strlen($this->container['home_phone']) < 8)) {
$invalidProperties[] = "invalid value for 'home_phone', the character length must be bigger than or equal to 8.";
}
if ($this->container['id'] === null) {
$invalidProperties[] = "'id' can't be null";
}
if ((mb_strlen($this->container['id']) > 256)) {
$invalidProperties[] = "invalid value for 'id', the character length must be smaller than or equal to 256.";
}
if ((mb_strlen($this->container['id']) < 0)) {
$invalidProperties[] = "invalid value for 'id', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['identity']) && (mb_strlen($this->container['identity']) > 256)) {
$invalidProperties[] = "invalid value for 'identity', the character length must be smaller than or equal to 256.";
}
if (!is_null($this->container['identity']) && (mb_strlen($this->container['identity']) < 0)) {
$invalidProperties[] = "invalid value for 'identity', the character length must be bigger than or equal to 0.";
}
$allowedValues = $this->getLocaleAllowableValues();
if (!is_null($this->container['locale']) && !in_array($this->container['locale'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'locale', must be one of '%s'",
implode("', '", $allowedValues)
);
}
if (!is_null($this->container['phone']) && (mb_strlen($this->container['phone']) > 18)) {
$invalidProperties[] = "invalid value for 'phone', the character length must be smaller than or equal to 18.";
}
if (!is_null($this->container['phone']) && (mb_strlen($this->container['phone']) < 8)) {
$invalidProperties[] = "invalid value for 'phone', the character length must be bigger than or equal to 8.";
}
if (!is_null($this->container['work_phone']) && (mb_strlen($this->container['work_phone']) > 18)) {
$invalidProperties[] = "invalid value for 'work_phone', the character length must be smaller than or equal to 18.";
}
if (!is_null($this->container['work_phone']) && (mb_strlen($this->container['work_phone']) < 8)) {
$invalidProperties[] = "invalid value for 'work_phone', the character length must be bigger than or equal to 8.";
}
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()
{
return count($this->listInvalidProperties()) === 0;
}
/**
* Gets email
*
* @return string
*/
public function getEmail()
{
return $this->container['email'];
}
/**
* Sets email
*
* @param string $email Customer's e-mail address. Mandatory by default, can be defined as optional by CardPay manager.
*
* @return $this
*/
public function setEmail($email)
{
if ((mb_strlen($email) > 256)) {
throw new \InvalidArgumentException('invalid length for $email when calling RecurringCustomer., must be smaller than or equal to 256.');
}
if ((mb_strlen($email) < 3)) {
throw new \InvalidArgumentException('invalid length for $email when calling RecurringCustomer., must be bigger than or equal to 3.');
}
$this->container['email'] = $email;
return $this;
}
/**
* Gets home_phone
*
* @return string
*/
public function getHomePhone()
{
return $this->container['home_phone'];
}
/**
* Sets home_phone
*
* @param string $home_phone The work phone number provided by the Cardholder. Required (if available), unless market or regional mandate restricts sending this information. Characters Format: string (10-18 symbols) country code + Subscriber number. Refer to ITU-E.164 for additional information on format and length.
*
* @return $this
*/
public function setHomePhone($home_phone)
{
if (!is_null($home_phone) && (mb_strlen($home_phone) > 18)) {
throw new \InvalidArgumentException('invalid length for $home_phone when calling RecurringCustomer., must be smaller than or equal to 18.');
}
if (!is_null($home_phone) && (mb_strlen($home_phone) < 8)) {
throw new \InvalidArgumentException('invalid length for $home_phone when calling RecurringCustomer., must be bigger than or equal to 8.');
}
$this->container['home_phone'] = $home_phone;
return $this;
}
/**
* Gets id
*
* @return string
*/
public function getId()
{
return $this->container['id'];
}
/**
* Sets id
*
* @param string $id Customer's ID in Merchant's system
*
* @return $this
*/
public function setId($id)
{
if ((mb_strlen($id) > 256)) {
throw new \InvalidArgumentException('invalid length for $id when calling RecurringCustomer., must be smaller than or equal to 256.');
}
if ((mb_strlen($id) < 0)) {
throw new \InvalidArgumentException('invalid length for $id when calling RecurringCustomer., must be bigger than or equal to 0.');
}
$this->container['id'] = $id;
return $this;
}
/**
* Gets identity
*
* @return string
*/
public function getIdentity()
{
return $this->container['identity'];
}
/**
* Sets identity
*
* @param string $identity Customer's identity in Merchant's system required for Brazil Installments
*
* @return $this
*/
public function setIdentity($identity)
{
if (!is_null($identity) && (mb_strlen($identity) > 256)) {
throw new \InvalidArgumentException('invalid length for $identity when calling RecurringCustomer., must be smaller than or equal to 256.');
}
if (!is_null($identity) && (mb_strlen($identity) < 0)) {
throw new \InvalidArgumentException('invalid length for $identity when calling RecurringCustomer., must be bigger than or equal to 0.');
}
$this->container['identity'] = $identity;
return $this;
}
/**
* Gets ip
*
* @return string
*/
public function getIp()
{
return $this->container['ip'];
}
/**
* Sets ip
*
* @param string $ip Customer IPv4
*
* @return $this
*/
public function setIp($ip)
{
$this->container['ip'] = $ip;
return $this;
}
/**
* Gets ip_country
*
* @return string
*/
public function getIpCountry()
{
return $this->container['ip_country'];
}
/**
* Sets ip_country
*
* @param string $ip_country Customer country by IP
*
* @return $this
*/
public function setIpCountry($ip_country)
{
$this->container['ip_country'] = $ip_country;
return $this;
}
/**
* Gets locale
*
* @return string
*/
public function getLocale()
{
return $this->container['locale'];
}
/**
* Sets locale
*
* @param string $locale Preferred locale for the payment page ([ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1) language code). The default locale will be applied if the selected locale is not supported. Supported locales are: `ru`, `en`, `zh`, `ja`
*
* @return $this
*/
public function setLocale($locale)
{
$allowedValues = $this->getLocaleAllowableValues();
if (!is_null($locale) && !in_array($locale, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'locale', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['locale'] = $locale;
return $this;
}
/**
* Gets phone
*
* @return string
*/
public function getPhone()
{
return $this->container['phone'];
}
/**
* Sets phone
*
* @param string $phone Customer phone number. Optional by default, can be defined as mandatory by CardPay manager.
*
* @return $this
*/
public function setPhone($phone)
{
if (!is_null($phone) && (mb_strlen($phone) > 18)) {
throw new \InvalidArgumentException('invalid length for $phone when calling RecurringCustomer., must be smaller than or equal to 18.');
}
if (!is_null($phone) && (mb_strlen($phone) < 8)) {
throw new \InvalidArgumentException('invalid length for $phone when calling RecurringCustomer., must be bigger than or equal to 8.');
}
$this->container['phone'] = $phone;
return $this;
}
/**
* Gets user_agent
*
* @return string
*/
public function getUserAgent()
{
return $this->container['user_agent'];
}
/**
* Sets user_agent
*
* @param string $user_agent User agent
*
* @return $this
*/
public function setUserAgent($user_agent)
{
$this->container['user_agent'] = $user_agent;
return $this;
}
/**
* Gets work_phone
*
* @return string
*/
public function getWorkPhone()
{
return $this->container['work_phone'];
}
/**
* Sets work_phone
*
* @param string $work_phone The home phone number provided by the Cardholder. Required (if available) unless market or regional mandate restricts sending this information. Characters Format: string (10-18 symbols) country code + Subscriber number. Refer to ITU-E.164 for additional information on format and length.
*
* @return $this
*/
public function setWorkPhone($work_phone)
{
if (!is_null($work_phone) && (mb_strlen($work_phone) > 18)) {
throw new \InvalidArgumentException('invalid length for $work_phone when calling RecurringCustomer., must be smaller than or equal to 18.');
}
if (!is_null($work_phone) && (mb_strlen($work_phone) < 8)) {
throw new \InvalidArgumentException('invalid length for $work_phone when calling RecurringCustomer., must be bigger than or equal to 8.');
}
$this->container['work_phone'] = $work_phone;
return $this;
}
/**
* Returns true if offset exists. False otherwise.
*
* @param integer $offset Offset
*
* @return boolean
*/
public function offsetExists($offset)
{
return isset($this->container[$offset]);
}
/**
* Gets offset.
*
* @param integer $offset Offset
*
* @return mixed
*/
public function offsetGet($offset)
{
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
/**
* Sets value based on offset.
*
* @param integer $offset Offset
* @param mixed $value Value to be set
*
* @return void
*/
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
/**
* Unsets offset.
*
* @param integer $offset Offset
*
* @return void
*/
public function offsetUnset($offset)
{
unset($this->container[$offset]);
}
/**
* Gets the string presentation of the object
*
* @return string
*/
public function __toString()
{
if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
}
return json_encode(ObjectSerializer::sanitizeForSerialization($this));
}
}