forked from cardpay/php-sdk-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecurringResponseRecurringData.php
1211 lines (1090 loc) · 30.1 KB
/
RecurringResponseRecurringData.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
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* PHP SDK for Unlimit API v3. All rights reserved.
*/
namespace Cardpay\model;
use \ArrayAccess;
use \Cardpay\ObjectSerializer;
class RecurringResponseRecurringData implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;
/**
* The original name of the model.
*
* @var string
*/
protected static $swaggerModelName = 'RecurringResponseRecurringData';
/**
* Array of property to type mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerTypes = [
'amount' => 'float',
'arn' => 'string',
'auth_code' => 'string',
'begin' => 'bool',
'created' => 'string',
'currency' => 'string',
'decline_code' => 'string',
'decline_reason' => 'string',
'extended_decline_reason' => 'string',
'filing' => '\Cardpay\model\RecurringResponseFiling',
'hold_period' => 'int',
'id' => 'string',
'initiator' => 'string',
'installment_amount' => 'float',
'installment_type' => 'string',
'invalid_data' => 'string[]',
'is_3d' => 'bool',
'network_trans_id' => 'string',
'note' => 'string',
'payments' => 'string',
'postauth_status' => 'string',
'rrn' => 'string',
'scheduled_type' => 'string',
'status' => 'string',
'subscription' => '\Cardpay\model\Subscription',
'type' => 'string',
'trans_type' => 'string'
];
/**
* Array of property to format mappings. Used for (de)serialization
*
* @var string[]
*/
protected static $swaggerFormats = [
'amount' => null,
'arn' => null,
'auth_code' => null,
'begin' => null,
'created' => null,
'currency' => null,
'decline_code' => null,
'decline_reason' => null,
'extended_decline_reason' => null,
'filing' => null,
'hold_period' => 'int32',
'id' => null,
'initiator' => null,
'installment_amount' => null,
'installment_type' => null,
'invalid_data' => null,
'is_3d' => null,
'network_trans_id' => null,
'note' => null,
'payments' => null,
'postauth_status' => null,
'rrn' => null,
'scheduled_type' => null,
'status' => null,
'subscription' => null,
'type' => null,
'trans_type' => 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 = [
'amount' => 'amount',
'arn' => 'arn',
'auth_code' => 'auth_code',
'begin' => 'begin',
'created' => 'created',
'currency' => 'currency',
'decline_code' => 'decline_code',
'decline_reason' => 'decline_reason',
'extended_decline_reason' => 'extended_decline_reason',
'filing' => 'filing',
'hold_period' => 'hold_period',
'id' => 'id',
'initiator' => 'initiator',
'installment_amount' => 'installment_amount',
'installment_type' => 'installment_type',
'invalid_data' => 'invalid_data',
'is_3d' => 'is_3d',
'network_trans_id' => 'network_trans_id',
'note' => 'note',
'payments' => 'payments',
'postauth_status' => 'postauth_status',
'rrn' => 'rrn',
'scheduled_type' => 'scheduled_type',
'status' => 'status',
'subscription' => 'subscription',
'type' => 'type',
'trans_type' => 'trans_type'
];
/**
* Array of attributes to setter functions (for deserialization of responses)
*
* @var string[]
*/
protected static $setters = [
'amount' => 'setAmount',
'arn' => 'setArn',
'auth_code' => 'setAuthCode',
'begin' => 'setBegin',
'created' => 'setCreated',
'currency' => 'setCurrency',
'decline_code' => 'setDeclineCode',
'decline_reason' => 'setDeclineReason',
'extended_decline_reason' => 'setExtendedDeclineReason',
'filing' => 'setFiling',
'hold_period' => 'setHoldPeriod',
'id' => 'setId',
'initiator' => 'setInitiator',
'installment_amount' => 'setInstallmentAmount',
'installment_type' => 'setInstallmentType',
'invalid_data' => 'setInvalidData',
'is_3d' => 'setIs3d',
'network_trans_id' => 'setNetworkTransId',
'note' => 'setNote',
'payments' => 'setPayments',
'postauth_status' => 'setPostauthStatus',
'rrn' => 'setRrn',
'scheduled_type' => 'setScheduledType',
'status' => 'setStatus',
'subscription' => 'setSubscription',
'type' => 'setType',
'trans_type' => 'setTransType'
];
/**
* Array of attributes to getter functions (for serialization of requests)
*
* @var string[]
*/
protected static $getters = [
'amount' => 'getAmount',
'arn' => 'getArn',
'auth_code' => 'getAuthCode',
'begin' => 'getBegin',
'created' => 'getCreated',
'currency' => 'getCurrency',
'decline_code' => 'getDeclineCode',
'decline_reason' => 'getDeclineReason',
'extended_decline_reason' => 'getExtendedDeclineReason',
'filing' => 'getFiling',
'hold_period' => 'getHoldPeriod',
'id' => 'getId',
'initiator' => 'getInitiator',
'installment_amount' => 'getInstallmentAmount',
'installment_type' => 'getInstallmentType',
'invalid_data' => 'getInvalidData',
'is_3d' => 'getIs3d',
'network_trans_id' => 'getNetworkTransId',
'note' => 'getNote',
'payments' => 'getPayments',
'postauth_status' => 'getPostauthStatus',
'rrn' => 'getRrn',
'scheduled_type' => 'getScheduledType',
'status' => 'getStatus',
'subscription' => 'getSubscription',
'type' => 'getType',
'trans_type' => 'getTransType'
];
/**
* 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 SCHEDULED_TYPE_SA = 'SA';
const SCHEDULED_TYPE_SM = 'SM';
const STATUS__NEW = 'NEW';
const STATUS_IN_PROGRESS = 'IN_PROGRESS';
const STATUS_DECLINED = 'DECLINED';
const STATUS_AUTHORIZED = 'AUTHORIZED';
const STATUS_COMPLETED = 'COMPLETED';
const STATUS_CANCELLED = 'CANCELLED';
const STATUS_REFUNDED = 'REFUNDED';
const STATUS_VOIDED = 'VOIDED';
const STATUS_TERMINATED = 'TERMINATED';
const STATUS_CHARGED_BACK = 'CHARGED_BACK';
const STATUS_CHARGEBACK_RESOLVED = 'CHARGEBACK_RESOLVED';
const STATUS_UNPAID = 'UNPAID';
const STATUS_WAITING = 'WAITING';
const TYPE_ONECLICK = 'ONECLICK';
const TYPE_SCHEDULED = 'SCHEDULED';
const TYPE_INSTALLMENT = 'INSTALLMENT';
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 getScheduledTypeAllowableValues()
{
return [
self::SCHEDULED_TYPE_SA,
self::SCHEDULED_TYPE_SM,
];
}
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getStatusAllowableValues()
{
return [
self::STATUS__NEW,
self::STATUS_IN_PROGRESS,
self::STATUS_DECLINED,
self::STATUS_AUTHORIZED,
self::STATUS_COMPLETED,
self::STATUS_CANCELLED,
self::STATUS_REFUNDED,
self::STATUS_VOIDED,
self::STATUS_TERMINATED,
self::STATUS_CHARGED_BACK,
self::STATUS_CHARGEBACK_RESOLVED,
self::STATUS_UNPAID,
self::STATUS_WAITING,
];
}
/**
* Gets allowable values of the enum
*
* @return string[]
*/
public function getTypeAllowableValues()
{
return [
self::TYPE_ONECLICK,
self::TYPE_SCHEDULED,
self::TYPE_INSTALLMENT,
];
}
/**
* 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['amount'] = isset($data['amount']) ? $data['amount'] : null;
$this->container['arn'] = isset($data['arn']) ? $data['arn'] : null;
$this->container['auth_code'] = isset($data['auth_code']) ? $data['auth_code'] : null;
$this->container['begin'] = isset($data['begin']) ? $data['begin'] : null;
$this->container['created'] = isset($data['created']) ? $data['created'] : null;
$this->container['currency'] = isset($data['currency']) ? $data['currency'] : null;
$this->container['decline_code'] = isset($data['decline_code']) ? $data['decline_code'] : null;
$this->container['decline_reason'] = isset($data['decline_reason']) ? $data['decline_reason'] : null;
$this->container['extended_decline_reason'] = isset($data['extended_decline_reason']) ? $data['extended_decline_reason'] : null;
$this->container['filing'] = isset($data['filing']) ? $data['filing'] : null;
$this->container['hold_period'] = isset($data['hold_period']) ? $data['hold_period'] : null;
$this->container['id'] = isset($data['id']) ? $data['id'] : null;
$this->container['initiator'] = isset($data['initiator']) ? $data['initiator'] : null;
$this->container['installment_amount'] = isset($data['installment_amount']) ? $data['installment_amount'] : null;
$this->container['installment_type'] = isset($data['installment_type']) ? $data['installment_type'] : null;
$this->container['invalid_data'] = isset($data['invalid_data']) ? $data['invalid_data'] : null;
$this->container['is_3d'] = isset($data['is_3d']) ? $data['is_3d'] : null;
$this->container['network_trans_id'] = isset($data['network_trans_id']) ? $data['network_trans_id'] : null;
$this->container['note'] = isset($data['note']) ? $data['note'] : null;
$this->container['payments'] = isset($data['payments']) ? $data['payments'] : null;
$this->container['postauth_status'] = isset($data['postauth_status']) ? $data['postauth_status'] : null;
$this->container['rrn'] = isset($data['rrn']) ? $data['rrn'] : null;
$this->container['scheduled_type'] = isset($data['scheduled_type']) ? $data['scheduled_type'] : null;
$this->container['status'] = isset($data['status']) ? $data['status'] : null;
$this->container['subscription'] = isset($data['subscription']) ? $data['subscription'] : null;
$this->container['type'] = isset($data['type']) ? $data['type'] : null;
$this->container['trans_type'] = isset($data['trans_type']) ? $data['trans_type'] : null;
}
/**
* Show all the invalid properties with reasons.
*
* @return array invalid properties with reasons
*/
public function listInvalidProperties()
{
$invalidProperties = [];
$allowedValues = $this->getScheduledTypeAllowableValues();
if (!is_null($this->container['scheduled_type']) && !in_array($this->container['scheduled_type'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'scheduled_type', must be one of '%s'",
implode("', '", $allowedValues)
);
}
$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->getTypeAllowableValues();
if (!is_null($this->container['type']) && !in_array($this->container['type'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'type', must be one of '%s'",
implode("', '", $allowedValues)
);
}
$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)
);
}
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 amount
*
* @return float
*/
public function getAmount()
{
return $this->container['amount'];
}
/**
* Sets amount
*
* @param float $amount Recurring amount
*
* @return $this
*/
public function setAmount($amount)
{
$this->container['amount'] = $amount;
return $this;
}
/**
* Gets arn
*
* @return string
*/
public function getArn()
{
return $this->container['arn'];
}
/**
* Sets arn
*
* @param string $arn ARN (Acquirer Reference Number), supplied by the acquiring financial institution, return only after receiving ARN from bank acquirer *(for BANKCARD payment method only)*
*
* @return $this
*/
public function setArn($arn)
{
$this->container['arn'] = $arn;
return $this;
}
/**
* Gets auth_code
*
* @return string
*/
public function getAuthCode()
{
return $this->container['auth_code'];
}
/**
* Sets auth_code
*
* @param string $auth_code Authorization code, provided by bank
*
* @return $this
*/
public function setAuthCode($auth_code)
{
$this->container['auth_code'] = $auth_code;
return $this;
}
/**
* Gets begin
*
* @return bool
*/
public function getBegin()
{
return $this->container['begin'];
}
/**
* Sets begin
*
* @param bool $begin Callback: show first/next recurring
*
* @return $this
*/
public function setBegin($begin)
{
$this->container['begin'] = $begin;
return $this;
}
/**
* Gets created
*
* @return string
*/
public function getCreated()
{
return $this->container['created'];
}
/**
* Sets created
*
* @param string $created Date and time when this recurring payment was created, [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format
*
* @return $this
*/
public function setCreated($created)
{
$this->container['created'] = $created;
return $this;
}
/**
* Gets currency
*
* @return string
*/
public function getCurrency()
{
return $this->container['currency'];
}
/**
* Sets currency
*
* @param string $currency Recurring currency code ([ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code)
*
* @return $this
*/
public function setCurrency($currency)
{
$this->container['currency'] = $currency;
return $this;
}
/**
* Gets decline_code
*
* @return string
*/
public function getDeclineCode()
{
return $this->container['decline_code'];
}
/**
* Sets decline_code
*
* @param string $decline_code Decline code (only in decline case)
*
* @return $this
*/
public function setDeclineCode($decline_code)
{
$this->container['decline_code'] = $decline_code;
return $this;
}
/**
* Gets decline_reason
*
* @return string
*/
public function getDeclineReason()
{
return $this->container['decline_reason'];
}
/**
* Sets decline_reason
*
* @param string $decline_reason Bank's message about transaction decline reason (only in decline case)
*
* @return $this
*/
public function setDeclineReason($decline_reason)
{
$this->container['decline_reason'] = $decline_reason;
return $this;
}
/**
* Gets extended_decline_reason
*
* @return string
*/
public function getExtendedDeclineReason()
{
return $this->container['extended_decline_reason'];
}
/**
* Sets extended_decline_reason
*
* @param string $extended_decline_reason Original decline reason. Can be presented in responses if original network response code is presented and option is enabled for Merchant. Not presented by default, ask Unlimit manager to enable it if needed.
*
* @return $this
*/
public function setExtendedDeclineReason($extended_decline_reason)
{
$this->container['extended_decline_reason'] = $extended_decline_reason;
return $this;
}
/**
* Gets filing
*
* @return \Cardpay\model\RecurringResponseFiling
*/
public function getFiling()
{
return $this->container['filing'];
}
/**
* Sets filing
*
* @param \Cardpay\model\RecurringResponseFiling $filing CardPay's filing data
*
* @return $this
*/
public function setFiling($filing)
{
$this->container['filing'] = $filing;
return $this;
}
/**
* Gets hold_period
*
* @return int
*/
public function getHoldPeriod()
{
return $this->container['hold_period'];
}
/**
* Sets hold_period
*
* @param int $hold_period The delay between the authorisation and scheduled auto-capture or auto-void, specified in hours. The minimum hold period is 1 hour, maximum hold period is 7 days (168 hours).
*
* @return $this
*/
public function setHoldPeriod($hold_period)
{
$this->container['hold_period'] = $hold_period;
return $this;
}
/**
* Gets id
*
* @return string
*/
public function getId()
{
return $this->container['id'];
}
/**
* Sets id
*
* @param string $id CardPay's recurring id
*
* @return $this
*/
public function setId($id)
{
$this->container['id'] = $id;
return $this;
}
/**
* Gets initiator
*
* @return string
*/
public function getInitiator()
{
return $this->container['initiator'];
}
/**
* Sets initiator
*
* @param string $initiator Initiator of scheduled transaction (applicable only for scheduled by merchant payments)
*
* @return $this
*/
public function setInitiator($initiator)
{
$this->container['initiator'] = $initiator;
return $this;
}
/**
* Gets installment_amount
*
* @return float
*/
public function getInstallmentAmount()
{
return $this->container['installment_amount'];
}
/**
* Sets installment_amount
*
* @param float $installment_amount Amount of 1 installment payment, will be returned if presented in request (for payment page mode only)
*
* @return $this
*/
public function setInstallmentAmount($installment_amount)
{
$this->container['installment_amount'] = $installment_amount;
return $this;
}
/**
* Gets installment_type
*
* @return string
*/
public function getInstallmentType()
{
return $this->container['installment_type'];
}
/**
* Sets installment_type
*
* @param string $installment_type Selected installment type
*
* @return $this
*/
public function setInstallmentType($installment_type)
{
$this->container['installment_type'] = $installment_type;
return $this;
}
/**
* Gets invalid_data
*
* @return string[]
*/
public function getInvalidData()
{
return $this->container['invalid_data'];
}
/**
* Sets invalid_data
*
* @param string[] $invalid_data Invalid card or billing data
*
* @return $this
*/
public function setInvalidData($invalid_data)
{
$this->container['invalid_data'] = $invalid_data;
return $this;
}
/**
* Gets is_3d
*
* @return bool
*/
public function getIs3d()
{
return $this->container['is_3d'];
}
/**
* Sets is_3d
*
* @param bool $is_3d Was 3-D Secure authentication made or not
*
* @return $this
*/
public function setIs3d($is_3d)
{
$this->container['is_3d'] = $is_3d;
return $this;
}
/**
* Gets network_trans_id
*
* @return string
*/
public function getNetworkTransId()
{
return $this->container['network_trans_id'];
}
/**
* Sets network_trans_id
*
* @param string $network_trans_id Network Reference Number of original transaction
*
* @return $this
*/
public function setNetworkTransId($network_trans_id)
{
$this->container['network_trans_id'] = $network_trans_id;
return $this;
}
/**
* Gets note
*
* @return string
*/
public function getNote()
{
return $this->container['note'];
}
/**
* Sets note
*
* @param string $note Payment note
*
* @return $this
*/
public function setNote($note)
{
$this->container['note'] = $note;
return $this;
}
/**
* Gets payments
*
* @return string
*/
public function getPayments()
{
return $this->container['payments'];
}
/**
* Sets payments
*
* @param string $payments Number of total payments, to be charged
*
* @return $this
*/
public function setPayments($payments)
{
$this->container['payments'] = $payments;
return $this;
}
/**
* Gets postauth_status
*
* @return string
*/
public function getPostauthStatus()
{
return $this->container['postauth_status'];
}
/**
* Sets postauth_status
*
* @param string $postauth_status The value contains payment status after hold period if payment has not been completed. Possible values: COMPLETE, REVERSE
*
* @return $this
*/
public function setPostauthStatus($postauth_status)
{
$this->container['postauth_status'] = $postauth_status;
return $this;
}
/**
* Gets rrn
*
* @return string
*/
public function getRrn()
{
return $this->container['rrn'];
}
/**
* Sets rrn
*
* @param string $rrn RRN (Retrieval Reference Number), supplied by the acquiring financial institution
*
* @return $this
*/
public function setRrn($rrn)
{
$this->container['rrn'] = $rrn;
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. `SM` - value for scheduled by merchant case `SA` - value for scheduled by acquirer case
*
* @return $this
*/
public function setScheduledType($scheduled_type)
{