-
Notifications
You must be signed in to change notification settings - Fork 24
/
ScheduledData.php
766 lines (669 loc) · 22.5 KB
/
ScheduledData.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
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
<?php
/**
* PHP SDK for Unlimit API v3. All rights reserved.
*/
namespace Cardpay\model;
use \ArrayAccess;
use \Cardpay\ObjectSerializer;
class ScheduledData implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $swaggerModelName = 'ScheduledData';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerTypes = [
'contract_number' => 'string',
'dynamic_descriptor' => 'string',
'encrypted_data' => 'string',
'generate_token' => 'bool',
'initial_amount' => 'float',
'initiator' => 'string',
'note' => 'string',
'plan' => '\Cardpay\model\Plan',
'scheduled_type' => 'string',
'subscription_start' => '\DateTime',
'three_ds_challenge_indicator' => 'string',
'trans_type' => 'string',
'units' => 'int'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerFormats = [
'contract_number' => null,
'dynamic_descriptor' => null,
'encrypted_data' => null,
'generate_token' => null,
'initial_amount' => null,
'initiator' => null,
'note' => null,
'plan' => null,
'scheduled_type' => null,
'subscription_start' => 'date-time',
'three_ds_challenge_indicator' => null,
'trans_type' => null,
'units' => 'int32'
];
/**
* 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 = [
'contract_number' => 'contract_number',
'dynamic_descriptor' => 'dynamic_descriptor',
'encrypted_data' => 'encrypted_data',
'generate_token' => 'generate_token',
'initial_amount' => 'initial_amount',
'initiator' => 'initiator',
'note' => 'note',
'plan' => 'plan',
'scheduled_type' => 'scheduled_type',
'subscription_start' => 'subscription_start',
'three_ds_challenge_indicator' => 'three_ds_challenge_indicator',
'trans_type' => 'trans_type',
'units' => 'units'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'contract_number' => 'setContractNumber',
'dynamic_descriptor' => 'setDynamicDescriptor',
'encrypted_data' => 'setEncryptedData',
'generate_token' => 'setGenerateToken',
'initial_amount' => 'setInitialAmount',
'initiator' => 'setInitiator',
'note' => 'setNote',
'plan' => 'setPlan',
'scheduled_type' => 'setScheduledType',
'subscription_start' => 'setSubscriptionStart',
'three_ds_challenge_indicator' => 'setThreeDsChallengeIndicator',
'trans_type' => 'setTransType',
'units' => 'setUnits'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'contract_number' => 'getContractNumber',
'dynamic_descriptor' => 'getDynamicDescriptor',
'encrypted_data' => 'getEncryptedData',
'generate_token' => 'getGenerateToken',
'initial_amount' => 'getInitialAmount',
'initiator' => 'getInitiator',
'note' => 'getNote',
'plan' => 'getPlan',
'scheduled_type' => 'getScheduledType',
'subscription_start' => 'getSubscriptionStart',
'three_ds_challenge_indicator' => 'getThreeDsChallengeIndicator',
'trans_type' => 'getTransType',
'units' => 'getUnits'
];
/**
* 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 TRANS_TYPE__01 = '01';
const TRANS_TYPE__03 = '03';
const TRANS_TYPE__10 = '10';
const TRANS_TYPE__11 = '11';
const TRANS_TYPE__28 = '28';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getTransTypeAllowableValues()
{
return [
self::TRANS_TYPE__01,
self::TRANS_TYPE__03,
self::TRANS_TYPE__10,
self::TRANS_TYPE__11,
self::TRANS_TYPE__28,
];
}
/**
* 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['contract_number'] = isset($data['contract_number']) ? $data['contract_number'] : null;
$this->container['dynamic_descriptor'] = isset($data['dynamic_descriptor']) ? $data['dynamic_descriptor'] : null;
$this->container['encrypted_data'] = isset($data['encrypted_data']) ? $data['encrypted_data'] : null;
$this->container['generate_token'] = isset($data['generate_token']) ? $data['generate_token'] : null;
$this->container['initial_amount'] = isset($data['initial_amount']) ? $data['initial_amount'] : null;
$this->container['initiator'] = isset($data['initiator']) ? $data['initiator'] : null;
$this->container['note'] = isset($data['note']) ? $data['note'] : null;
$this->container['plan'] = isset($data['plan']) ? $data['plan'] : null;
$this->container['scheduled_type'] = isset($data['scheduled_type']) ? $data['scheduled_type'] : null;
$this->container['subscription_start'] = isset($data['subscription_start']) ? $data['subscription_start'] : null;
$this->container['three_ds_challenge_indicator'] = isset($data['three_ds_challenge_indicator']) ? $data['three_ds_challenge_indicator'] : null;
$this->container['trans_type'] = isset($data['trans_type']) ? $data['trans_type'] : null;
$this->container['units'] = isset($data['units']) ? $data['units'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
if (!is_null($this->container['contract_number']) && (mb_strlen($this->container['contract_number']) > 20)) {
$invalidProperties[] = "invalid value for 'contract_number', the character length must be smaller than or equal to 20.";
}
if (!is_null($this->container['contract_number']) && (mb_strlen($this->container['contract_number']) < 0)) {
$invalidProperties[] = "invalid value for 'contract_number', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['dynamic_descriptor']) && (mb_strlen($this->container['dynamic_descriptor']) > 25)) {
$invalidProperties[] = "invalid value for 'dynamic_descriptor', the character length must be smaller than or equal to 25.";
}
if (!is_null($this->container['dynamic_descriptor']) && (mb_strlen($this->container['dynamic_descriptor']) < 0)) {
$invalidProperties[] = "invalid value for 'dynamic_descriptor', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['encrypted_data']) && (mb_strlen($this->container['encrypted_data']) > 10000)) {
$invalidProperties[] = "invalid value for 'encrypted_data', the character length must be smaller than or equal to 10000.";
}
if (!is_null($this->container['encrypted_data']) && (mb_strlen($this->container['encrypted_data']) < 0)) {
$invalidProperties[] = "invalid value for 'encrypted_data', the character length must be bigger than or equal to 0.";
}
if ($this->container['initiator'] === null) {
$invalidProperties[] = "'initiator' can't be null";
}
if (!preg_match("/mit|cit/", $this->container['initiator'])) {
$invalidProperties[] = "invalid value for 'initiator', must be conform to the pattern /mit|cit/.";
}
if (!is_null($this->container['note']) && (mb_strlen($this->container['note']) > 100)) {
$invalidProperties[] = "invalid value for 'note', the character length must be smaller than or equal to 100.";
}
if (!is_null($this->container['note']) && (mb_strlen($this->container['note']) < 0)) {
$invalidProperties[] = "invalid value for 'note', the character length must be bigger than or equal to 0.";
}
if (!is_null($this->container['scheduled_type']) && !preg_match("/SA/", $this->container['scheduled_type'])) {
$invalidProperties[] = "invalid value for 'scheduled_type', must be conform to the pattern /SA/.";
}
if (!is_null($this->container['three_ds_challenge_indicator']) && !preg_match("/01|04/", $this->container['three_ds_challenge_indicator'])) {
$invalidProperties[] = "invalid value for 'three_ds_challenge_indicator', must be conform to the pattern /01|04/.";
}
$allowedValues = $this->getTransTypeAllowableValues();
if (!is_null($this->container['trans_type']) && !in_array($this->container['trans_type'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'trans_type', must be one of '%s'",
implode("', '", $allowedValues)
);
}
if (!is_null($this->container['units']) && ($this->container['units'] < 1)) {
$invalidProperties[] = "invalid value for 'units', must be bigger than or equal to 1.";
}
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 contract_number
*
* @return string
*/
public function getContractNumber()
{
return $this->container['contract_number'];
}
/**
* Sets contract_number
*
* @param string $contract_number Contract number between customer and merchant. Required for Mexican merchants for scheduled payments.
*
* @return $this
*/
public function setContractNumber($contract_number)
{
if (!is_null($contract_number) && (mb_strlen($contract_number) > 20)) {
throw new \InvalidArgumentException('invalid length for $contract_number when calling ScheduledData., must be smaller than or equal to 20.');
}
if (!is_null($contract_number) && (mb_strlen($contract_number) < 0)) {
throw new \InvalidArgumentException('invalid length for $contract_number when calling ScheduledData., must be bigger than or equal to 0.');
}
$this->container['contract_number'] = $contract_number;
return $this;
}
/**
* Gets dynamic_descriptor
*
* @return string
*/
public function getDynamicDescriptor()
{
return $this->container['dynamic_descriptor'];
}
/**
* Sets dynamic_descriptor
*
* @param string $dynamic_descriptor Short description of the service or product, must be enabled by CardPay manager to be used.
*
* @return $this
*/
public function setDynamicDescriptor($dynamic_descriptor)
{
if (!is_null($dynamic_descriptor) && (mb_strlen($dynamic_descriptor) > 25)) {
throw new \InvalidArgumentException('invalid length for $dynamic_descriptor when calling ScheduledData., must be smaller than or equal to 25.');
}
if (!is_null($dynamic_descriptor) && (mb_strlen($dynamic_descriptor) < 0)) {
throw new \InvalidArgumentException('invalid length for $dynamic_descriptor when calling ScheduledData., must be bigger than or equal to 0.');
}
$this->container['dynamic_descriptor'] = $dynamic_descriptor;
return $this;
}
/**
* Gets encrypted_data
*
* @return string
*/
public function getEncryptedData()
{
return $this->container['encrypted_data'];
}
/**
* Sets encrypted_data
*
* @param string $encrypted_data The encrypted payment credentials encoded in base64. *(for APPLEPAY payment method only)*
*
* @return $this
*/
public function setEncryptedData($encrypted_data)
{
if (!is_null($encrypted_data) && (mb_strlen($encrypted_data) > 10000)) {
throw new \InvalidArgumentException('invalid length for $encrypted_data when calling ScheduledData., must be smaller than or equal to 10000.');
}
if (!is_null($encrypted_data) && (mb_strlen($encrypted_data) < 0)) {
throw new \InvalidArgumentException('invalid length for $encrypted_data when calling ScheduledData., must be bigger than or equal to 0.');
}
$this->container['encrypted_data'] = $encrypted_data;
return $this;
}
/**
* Gets generate_token
*
* @return bool
*/
public function getGenerateToken()
{
return $this->container['generate_token'];
}
/**
* Sets generate_token
*
* @param bool $generate_token This attribute can be received only in first recurring request. In all requests with recurring_id card.token can't be generated. If set to 'true', Card token will be generated and returned in GET response. Will be generated only for successful transactions (not for declined).
*
* @return $this
*/
public function setGenerateToken($generate_token)
{
$this->container['generate_token'] = $generate_token;
return $this;
}
/**
* Gets initial_amount
*
* @return float
*/
public function getInitialAmount()
{
return $this->container['initial_amount'];
}
/**
* Sets initial_amount
*
* @param float $initial_amount The amount of subscription initiated transaction in selected currency with dot as a decimal separator, must be less than 100 millions
*
* @return $this
*/
public function setInitialAmount($initial_amount)
{
$this->container['initial_amount'] = $initial_amount;
return $this;
}
/**
* Gets initiator
*
* @return string
*/
public function getInitiator()
{
return $this->container['initiator'];
}
/**
* Sets initiator
*
* @param string $initiator Use `cit` for initiator attribute (cardholder initiated transaction).
*
* @return $this
*/
public function setInitiator($initiator)
{
if ((!preg_match("/mit|cit/", $initiator))) {
throw new \InvalidArgumentException("invalid value for $initiator when calling ScheduledData., must conform to the pattern /mit|cit/.");
}
$this->container['initiator'] = $initiator;
return $this;
}
/**
* Gets note
*
* @return string
*/
public function getNote()
{
return $this->container['note'];
}
/**
* Sets note
*
* @param string $note Note about the recurring that will not be displayed to customer.
*
* @return $this
*/
public function setNote($note)
{
if (!is_null($note) && (mb_strlen($note) > 100)) {
throw new \InvalidArgumentException('invalid length for $note when calling ScheduledData., must be smaller than or equal to 100.');
}
if (!is_null($note) && (mb_strlen($note) < 0)) {
throw new \InvalidArgumentException('invalid length for $note when calling ScheduledData., must be bigger than or equal to 0.');
}
$this->container['note'] = $note;
return $this;
}
/**
* Gets plan
*
* @return \Cardpay\model\Plan
*/
public function getPlan()
{
return $this->container['plan'];
}
/**
* Sets plan
*
* @param \Cardpay\model\Plan $plan Plan data
*
* @return $this
*/
public function setPlan($plan)
{
$this->container['plan'] = $plan;
return $this;
}
/**
* Gets scheduled_type
*
* @return string
*/
public function getScheduledType()
{
return $this->container['scheduled_type'];
}
/**
* Sets scheduled_type
*
* @param string $scheduled_type Scheduled payment type attribute. For typical scheduled payments should be absent or `SA` - scheduled by acquirer
*
* @return $this
*/
public function setScheduledType($scheduled_type)
{
if (!is_null($scheduled_type) && (!preg_match("/SA/", $scheduled_type))) {
throw new \InvalidArgumentException("invalid value for $scheduled_type when calling ScheduledData., must conform to the pattern /SA/.");
}
$this->container['scheduled_type'] = $scheduled_type;
return $this;
}
/**
* Gets subscription_start
*
* @return \DateTime
*/
public function getSubscriptionStart()
{
return $this->container['subscription_start'];
}
/**
* Sets subscription_start
*
* @param \DateTime $subscription_start The time in 'yyyy-MM-dd' format when subscription will actually become activated (grace period).Leave it empty to activate subscription at once without any grace period applied.
*
* @return $this
*/
public function setSubscriptionStart($subscription_start)
{
$this->container['subscription_start'] = $subscription_start;
return $this;
}
/**
* Gets three_ds_challenge_indicator
*
* @return string
*/
public function getThreeDsChallengeIndicator()
{
return $this->container['three_ds_challenge_indicator'];
}
/**
* Sets three_ds_challenge_indicator
*
* @param string $three_ds_challenge_indicator three_ds_challenge_indicator
*
* @return $this
*/
public function setThreeDsChallengeIndicator($three_ds_challenge_indicator)
{
if (!is_null($three_ds_challenge_indicator) && (!preg_match("/01|04/", $three_ds_challenge_indicator))) {
throw new \InvalidArgumentException("invalid value for $three_ds_challenge_indicator when calling ScheduledData., must conform to the pattern /01|04/.");
}
$this->container['three_ds_challenge_indicator'] = $three_ds_challenge_indicator;
return $this;
}
/**
* Gets trans_type
*
* @return string
*/
public function getTransType()
{
return $this->container['trans_type'];
}
/**
* Sets trans_type
*
* @param string $trans_type trans_type
*
* @return $this
*/
public function setTransType($trans_type)
{
$allowedValues = $this->getTransTypeAllowableValues();
if (!is_null($trans_type) && !in_array($trans_type, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'trans_type', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['trans_type'] = $trans_type;
return $this;
}
/**
* Gets units
*
* @return int
*/
public function getUnits()
{
return $this->container['units'];
}
/**
* Sets units
*
* @param int $units Units quantity of the subscription, who can consume their service.
*
* @return $this
*/
public function setUnits($units)
{
if (!is_null($units) && ($units < 1)) {
throw new \InvalidArgumentException('invalid value for $units when calling ScheduledData., must be bigger than or equal to 1.');
}
$this->container['units'] = $units;
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));
}
}