-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathUpdatedSubscriptionData.php
725 lines (650 loc) · 17.7 KB
/
UpdatedSubscriptionData.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
<?php
/**
* PHP SDK for Unlimit API v3. All rights reserved.
*/
namespace Cardpay\model;
use \ArrayAccess;
use \Cardpay\ObjectSerializer;
class UpdatedSubscriptionData implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $swaggerModelName = 'UpdatedSubscriptionData';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerTypes = [
'change_status_claim_id' => 'string',
'details' => 'string',
'filing' => '\Cardpay\model\RecurringResponseFiling',
'id' => 'string',
'is_executed' => 'bool',
'next_payment_date' => '\DateTime',
'plan' => '\Cardpay\model\Plan',
'recurring_data' => '\Cardpay\model\UpdatedSubscriptionRecurringData',
'remaining_amount' => 'float',
'status' => 'string',
'status_to' => 'string',
'units' => 'int',
'updated' => '\DateTime'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerFormats = [
'change_status_claim_id' => null,
'details' => null,
'filing' => null,
'id' => null,
'is_executed' => null,
'next_payment_date' => 'date-time',
'plan' => null,
'recurring_data' => null,
'remaining_amount' => null,
'status' => null,
'status_to' => null,
'units' => 'int32',
'updated' => 'date-time'
];
/**
* 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 = [
'change_status_claim_id' => 'change_status_claim_id',
'details' => 'details',
'filing' => 'filing',
'id' => 'id',
'is_executed' => 'is_executed',
'next_payment_date' => 'next_payment_date',
'plan' => 'plan',
'recurring_data' => 'recurring_data',
'remaining_amount' => 'remaining_amount',
'status' => 'status',
'status_to' => 'status_to',
'units' => 'units',
'updated' => 'updated'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'change_status_claim_id' => 'setChangeStatusClaimId',
'details' => 'setDetails',
'filing' => 'setFiling',
'id' => 'setId',
'is_executed' => 'setIsExecuted',
'next_payment_date' => 'setNextPaymentDate',
'plan' => 'setPlan',
'recurring_data' => 'setRecurringData',
'remaining_amount' => 'setRemainingAmount',
'status' => 'setStatus',
'status_to' => 'setStatusTo',
'units' => 'setUnits',
'updated' => 'setUpdated'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'change_status_claim_id' => 'getChangeStatusClaimId',
'details' => 'getDetails',
'filing' => 'getFiling',
'id' => 'getId',
'is_executed' => 'getIsExecuted',
'next_payment_date' => 'getNextPaymentDate',
'plan' => 'getPlan',
'recurring_data' => 'getRecurringData',
'remaining_amount' => 'getRemainingAmount',
'status' => 'getStatus',
'status_to' => 'getStatusTo',
'units' => 'getUnits',
'updated' => 'getUpdated'
];
/**
* 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 STATUS_ACTIVE = 'ACTIVE';
const STATUS_INACTIVE = 'INACTIVE';
const STATUS_CANCELLED = 'CANCELLED';
const STATUS_PAST_DUE = 'PAST_DUE';
const STATUS_PENDING = 'PENDING';
const STATUS_COMPLETED = 'COMPLETED';
const STATUS_CARD_EXPIRED = 'CARD_EXPIRED';
const STATUS_ACTIVATION_FAILED = 'ACTIVATION_FAILED';
const STATUS_UNPAID = 'UNPAID';
const STATUS_WAITING = 'WAITING';
const STATUS_TO_ACTIVE = 'ACTIVE';
const STATUS_TO_INACTIVE = 'INACTIVE';
const STATUS_TO_CANCELLED = 'CANCELLED';
const STATUS_TO_PAST_DUE = 'PAST_DUE';
const STATUS_TO_PENDING = 'PENDING';
const STATUS_TO_COMPLETED = 'COMPLETED';
const STATUS_TO_CARD_EXPIRED = 'CARD_EXPIRED';
const STATUS_TO_ACTIVATION_FAILED = 'ACTIVATION_FAILED';
const STATUS_TO_UNPAID = 'UNPAID';
const STATUS_TO_WAITING = 'WAITING';
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getStatusAllowableValues()
{
return [
self::STATUS_ACTIVE,
self::STATUS_INACTIVE,
self::STATUS_CANCELLED,
self::STATUS_PAST_DUE,
self::STATUS_PENDING,
self::STATUS_COMPLETED,
self::STATUS_CARD_EXPIRED,
self::STATUS_ACTIVATION_FAILED,
self::STATUS_UNPAID,
self::STATUS_WAITING,
];
}
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getStatusToAllowableValues()
{
return [
self::STATUS_TO_ACTIVE,
self::STATUS_TO_INACTIVE,
self::STATUS_TO_CANCELLED,
self::STATUS_TO_PAST_DUE,
self::STATUS_TO_PENDING,
self::STATUS_TO_COMPLETED,
self::STATUS_TO_CARD_EXPIRED,
self::STATUS_TO_ACTIVATION_FAILED,
self::STATUS_TO_UNPAID,
self::STATUS_TO_WAITING,
];
}
/**
* 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['change_status_claim_id'] = isset($data['change_status_claim_id']) ? $data['change_status_claim_id'] : null;
$this->container['details'] = isset($data['details']) ? $data['details'] : null;
$this->container['filing'] = isset($data['filing']) ? $data['filing'] : null;
$this->container['id'] = isset($data['id']) ? $data['id'] : null;
$this->container['is_executed'] = isset($data['is_executed']) ? $data['is_executed'] : null;
$this->container['next_payment_date'] = isset($data['next_payment_date']) ? $data['next_payment_date'] : null;
$this->container['plan'] = isset($data['plan']) ? $data['plan'] : null;
$this->container['recurring_data'] = isset($data['recurring_data']) ? $data['recurring_data'] : null;
$this->container['remaining_amount'] = isset($data['remaining_amount']) ? $data['remaining_amount'] : null;
$this->container['status'] = isset($data['status']) ? $data['status'] : null;
$this->container['status_to'] = isset($data['status_to']) ? $data['status_to'] : null;
$this->container['units'] = isset($data['units']) ? $data['units'] : null;
$this->container['updated'] = isset($data['updated']) ? $data['updated'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
$allowedValues = $this->getStatusAllowableValues();
if (!is_null($this->container['status']) && !in_array($this->container['status'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'status', must be one of '%s'",
implode("', '", $allowedValues)
);
}
$allowedValues = $this->getStatusToAllowableValues();
if (!is_null($this->container['status_to']) && !in_array($this->container['status_to'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'status_to', must be one of '%s'",
implode("', '", $allowedValues)
);
}
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 change_status_claim_id
*
* @return string
*/
public function getChangeStatusClaimId()
{
return $this->container['change_status_claim_id'];
}
/**
* Sets change_status_claim_id
*
* @param string $change_status_claim_id ID of claim; appears in case of request change was processed asynchronously and put in queue. Mandatory if request was put in queue.
*
* @return $this
*/
public function setChangeStatusClaimId($change_status_claim_id)
{
$this->container['change_status_claim_id'] = $change_status_claim_id;
return $this;
}
/**
* Gets details
*
* @return string
*/
public function getDetails()
{
return $this->container['details'];
}
/**
* Sets details
*
* @param string $details Operation details, errors, etc.
*
* @return $this
*/
public function setDetails($details)
{
$this->container['details'] = $details;
return $this;
}
/**
* Gets filing
*
* @return \Cardpay\model\RecurringResponseFiling
*/
public function getFiling()
{
return $this->container['filing'];
}
/**
* Sets filing
*
* @param \Cardpay\model\RecurringResponseFiling $filing Filing data
*
* @return $this
*/
public function setFiling($filing)
{
$this->container['filing'] = $filing;
return $this;
}
/**
* Gets id
*
* @return string
*/
public function getId()
{
return $this->container['id'];
}
/**
* Sets id
*
* @param string $id ID of subscription
*
* @return $this
*/
public function setId($id)
{
$this->container['id'] = $id;
return $this;
}
/**
* Gets is_executed
*
* @return bool
*/
public function getIsExecuted()
{
return $this->container['is_executed'];
}
/**
* Sets is_executed
*
* @param bool $is_executed Status of operation
*
* @return $this
*/
public function setIsExecuted($is_executed)
{
$this->container['is_executed'] = $is_executed;
return $this;
}
/**
* Gets next_payment_date
*
* @return \DateTime
*/
public function getNextPaymentDate()
{
return $this->container['next_payment_date'];
}
/**
* Sets next_payment_date
*
* @param \DateTime $next_payment_date next_payment_date
*
* @return $this
*/
public function setNextPaymentDate($next_payment_date)
{
$this->container['next_payment_date'] = $next_payment_date;
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 recurring_data
*
* @return \Cardpay\model\UpdatedSubscriptionRecurringData
*/
public function getRecurringData()
{
return $this->container['recurring_data'];
}
/**
* Sets recurring_data
*
* @param \Cardpay\model\UpdatedSubscriptionRecurringData $recurring_data Recurring data
*
* @return $this
*/
public function setRecurringData($recurring_data)
{
$this->container['recurring_data'] = $recurring_data;
return $this;
}
/**
* Gets remaining_amount
*
* @return float
*/
public function getRemainingAmount()
{
return $this->container['remaining_amount'];
}
/**
* Sets remaining_amount
*
* @param float $remaining_amount The amount remained to be paid after repayment operation. Mandatory for `REPAYMENT` operation only
*
* @return $this
*/
public function setRemainingAmount($remaining_amount)
{
$this->container['remaining_amount'] = $remaining_amount;
return $this;
}
/**
* Gets status
*
* @return string
*/
public function getStatus()
{
return $this->container['status'];
}
/**
* Sets status
*
* @param string $status Resulted status of subscription
*
* @return $this
*/
public function setStatus($status)
{
$allowedValues = $this->getStatusAllowableValues();
if (!is_null($status) && !in_array($status, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'status', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['status'] = $status;
return $this;
}
/**
* Gets status_to
*
* @return string
*/
public function getStatusTo()
{
return $this->container['status_to'];
}
/**
* Sets status_to
*
* @param string $status_to Requested status of subscription. Mandatory for `CHANGE_STATUS` operation only.
*
* @return $this
*/
public function setStatusTo($status_to)
{
$allowedValues = $this->getStatusToAllowableValues();
if (!is_null($status_to) && !in_array($status_to, $allowedValues, true)) {
throw new \InvalidArgumentException(
sprintf(
"Invalid value for 'status_to', must be one of '%s'",
implode("', '", $allowedValues)
)
);
}
$this->container['status_to'] = $status_to;
return $this;
}
/**
* Gets units
*
* @return int
*/
public function getUnits()
{
return $this->container['units'];
}
/**
* Sets units
*
* @param int $units New quantity of subscription units
*
* @return $this
*/
public function setUnits($units)
{
$this->container['units'] = $units;
return $this;
}
/**
* Gets updated
*
* @return \DateTime
*/
public function getUpdated()
{
return $this->container['updated'];
}
/**
* Sets updated
*
* @param \DateTime $updated If request is successful then date and time returned in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (format - yyyy-MM-dd'T'HH:mm:ss'Z').
*
* @return $this
*/
public function setUpdated($updated)
{
$this->container['updated'] = $updated;
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));
}
}