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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Api\Data;
/**
* Order payment interface.
*
* An order is a document that a web store issues to a customer. Magento generates a sales order that lists the product
* items, billing and shipping addresses, and shipping and payment methods. A corresponding external document, known as
* a purchase order, is emailed to the customer.
* @api
* @since 100.0.2
*/
interface OrderPaymentInterface extends \Magento\Framework\Api\ExtensibleDataInterface
{
/**#@+
* Constants for keys of data array. Identical to the name of the getter in snake case.
*/
/*
* Entity ID.
*/
const ENTITY_ID = 'entity_id';
/*
* Parent ID.
*/
const PARENT_ID = 'parent_id';
/*
* Base shipping captured.
*/
const BASE_SHIPPING_CAPTURED = 'base_shipping_captured';
/*
* Shipping captured.
*/
const SHIPPING_CAPTURED = 'shipping_captured';
/*
* Amount refunded.
*/
const AMOUNT_REFUNDED = 'amount_refunded';
/*
* Base amount paid.
*/
const BASE_AMOUNT_PAID = 'base_amount_paid';
/*
* Amount canceled.
*/
const AMOUNT_CANCELED = 'amount_canceled';
/*
* Base amount authorized.
*/
const BASE_AMOUNT_AUTHORIZED = 'base_amount_authorized';
/*
* Base amount paid online.
*/
const BASE_AMOUNT_PAID_ONLINE = 'base_amount_paid_online';
/*
* Base amount refunded online.
*/
const BASE_AMOUNT_REFUNDED_ONLINE = 'base_amount_refunded_online';
/*
* Base shipping amount.
*/
const BASE_SHIPPING_AMOUNT = 'base_shipping_amount';
/*
* Shipping amount.
*/
const SHIPPING_AMOUNT = 'shipping_amount';
/*
* Amount paid.
*/
const AMOUNT_PAID = 'amount_paid';
/*
* Amount authorized.
*/
const AMOUNT_AUTHORIZED = 'amount_authorized';
/*
* Base amount ordered.
*/
const BASE_AMOUNT_ORDERED = 'base_amount_ordered';
/*
* Base shipping refunded.
*/
const BASE_SHIPPING_REFUNDED = 'base_shipping_refunded';
/*
* Shipping refunded.
*/
const SHIPPING_REFUNDED = 'shipping_refunded';
/*
* Base amount refunded.
*/
const BASE_AMOUNT_REFUNDED = 'base_amount_refunded';
/*
* Amount ordered.
*/
const AMOUNT_ORDERED = 'amount_ordered';
/*
* Base amount canceled.
*/
const BASE_AMOUNT_CANCELED = 'base_amount_canceled';
/*
* Quote payment ID.
*/
const QUOTE_PAYMENT_ID = 'quote_payment_id';
/*
* Additional data.
*/
const ADDITIONAL_DATA = 'additional_data';
/*
* Credit card expiration month.
*/
const CC_EXP_MONTH = 'cc_exp_month';
/**
* Credit card SS start year.
*
* @deprecated unused constant
*/
const CC_SS_START_YEAR = 'cc_ss_start_year';
/*
* eCheck bank name.
*/
const ECHECK_BANK_NAME = 'echeck_bank_name';
/*
* Payment method.
*/
const METHOD = 'method';
/*
* Credit card debug request body.
*/
const CC_DEBUG_REQUEST_BODY = 'cc_debug_request_body';
/*
* Credit card secure verify.
*/
const CC_SECURE_VERIFY = 'cc_secure_verify';
/*
* Protection eligibility.
*/
const PROTECTION_ELIGIBILITY = 'protection_eligibility';
/*
* Credit card approval.
*/
const CC_APPROVAL = 'cc_approval';
/*
* Last four digits of credit card number.
*/
const CC_LAST_4 = 'cc_last_4';
/*
* Credit card status description.
*/
const CC_STATUS_DESCRIPTION = 'cc_status_description';
/*
* eCheck type.
*/
const ECHECK_TYPE = 'echeck_type';
/*
* Credit card debug response serialized.
*/
const CC_DEBUG_RESPONSE_SERIALIZED = 'cc_debug_response_serialized';
/**
* Credit card SS start month.
*
* @deprecated unused constant
*/
const CC_SS_START_MONTH = 'cc_ss_start_month';
/*
* eCheck account type.
*/
const ECHECK_ACCOUNT_TYPE = 'echeck_account_type';
/*
* Last transaction ID.
*/
const LAST_TRANS_ID = 'last_trans_id';
/*
* Credit card CID status.
*/
const CC_CID_STATUS = 'cc_cid_status';
/*
* Credit card owner.
*/
const CC_OWNER = 'cc_owner';
/*
* Credit card type.
*/
const CC_TYPE = 'cc_type';
/*
* PO number.
*/
const PO_NUMBER = 'po_number';
/*
* Credit card expiration year.
*/
const CC_EXP_YEAR = 'cc_exp_year';
/*
* Credit card status.
*/
const CC_STATUS = 'cc_status';
/*
* eCheck routing number.
*/
const ECHECK_ROUTING_NUMBER = 'echeck_routing_number';
/*
* Account status.
*/
const ACCOUNT_STATUS = 'account_status';
/*
* ANET transaction method.
*/
const ANET_TRANS_METHOD = 'anet_trans_method';
/*
* Credit card debug response body.
*/
const CC_DEBUG_RESPONSE_BODY = 'cc_debug_response_body';
/**
* Credit card SS issue.
*
* @deprecated unused constant
*/
const CC_SS_ISSUE = 'cc_ss_issue';
/*
* eCheck account name.
*/
const ECHECK_ACCOUNT_NAME = 'echeck_account_name';
/*
* Credit card AVS status.
*/
const CC_AVS_STATUS = 'cc_avs_status';
/*
* Encrypted credit card number.
*/
const CC_NUMBER_ENC = 'cc_number_enc';
/*
* Credit card transaction ID.
*/
const CC_TRANS_ID = 'cc_trans_id';
/*
* Address status.
*/
const ADDRESS_STATUS = 'address_status';
/*
* Additional information.
*/
const ADDITIONAL_INFORMATION = 'additional_information';
/**
* Gets the account status for the order payment.
*
* @return string Account status.
*/
public function getAccountStatus();
/**
* Gets the additional data for the order payment.
*
* @return string|null Additional data.
*/
public function getAdditionalData();
/**
* Gets the additional information for the order payment.
*
* @return string[] Array of additional information.
*/
public function getAdditionalInformation();
/**
* Gets the address status for the order payment.
*
* @return string|null Address status.
*/
public function getAddressStatus();
/**
* Gets the amount authorized for the order payment.
*
* @return float|null Amount authorized.
*/
public function getAmountAuthorized();
/**
* Gets the amount canceled for the order payment.
*
* @return float|null Amount canceled.
*/
public function getAmountCanceled();
/**
* Gets the amount ordered for the order payment.
*
* @return float|null Amount ordered.
*/
public function getAmountOrdered();
/**
* Gets the amount paid for the order payment.
*
* @return float|null Amount paid.
*/
public function getAmountPaid();
/**
* Gets the amount refunded for the order payment.
*
* @return float|null Amount refunded.
*/
public function getAmountRefunded();
/**
* Gets the anet transaction method for the order payment.
*
* @return string|null Anet transaction method.
*/
public function getAnetTransMethod();
/**
* Gets the base amount authorized for the order payment.
*
* @return float|null Base amount authorized.
*/
public function getBaseAmountAuthorized();
/**
* Gets the base amount canceled for the order payment.
*
* @return float|null Base amount canceled.
*/
public function getBaseAmountCanceled();
/**
* Gets the base amount ordered for the order payment.
*
* @return float|null Base amount ordered.
*/
public function getBaseAmountOrdered();
/**
* Gets the base amount paid for the order payment.
*
* @return float|null Base amount paid.
*/
public function getBaseAmountPaid();
/**
* Gets the base amount paid online for the order payment.
*
* @return float|null Base amount paid online.
*/
public function getBaseAmountPaidOnline();
/**
* Gets the base amount refunded for the order payment.
*
* @return float|null Base amount refunded.
*/
public function getBaseAmountRefunded();
/**
* Gets the base amount refunded online for the order payment.
*
* @return float|null Base amount refunded online.
*/
public function getBaseAmountRefundedOnline();
/**
* Gets the base shipping amount for the order payment.
*
* @return float|null Base shipping amount.
*/
public function getBaseShippingAmount();
/**
* Gets the base shipping captured for the order payment.
*
* @return float|null Base shipping captured amount.
*/
public function getBaseShippingCaptured();
/**
* Gets the base shipping refunded amount for the order payment.
*
* @return float|null Base shipping refunded amount.
*/
public function getBaseShippingRefunded();
/**
* Gets the credit card approval for the order payment.
*
* @return string|null Credit card approval.
*/
public function getCcApproval();
/**
* Gets the credit card avs status for the order payment.
*
* @return string|null Credit card avs status.
*/
public function getCcAvsStatus();
/**
* Gets the credit card cid status for the order payment.
*
* @return string|null Credit card CID status.
*/
public function getCcCidStatus();
/**
* Gets the credit card debug request body for the order payment.
*
* @return string|null Credit card debug request body.
*/
public function getCcDebugRequestBody();
/**
* Gets the credit card debug response body for the order payment.
*
* @return string|null Credit card debug response body.
*/
public function getCcDebugResponseBody();
/**
* Gets the credit card debug response serialized for the order payment.
*
* @return string|null Credit card debug response serialized.
*/
public function getCcDebugResponseSerialized();
/**
* Gets the credit card expiration month for the order payment.
*
* @return string|null Credit card expiration month.
*/
public function getCcExpMonth();
/**
* Gets the credit card expiration year for the order payment.
*
* @return string|null Credit card expiration year.
*/
public function getCcExpYear();
/**
* Gets the last four digits of the credit card for the order payment.
*
* @return string Last four digits of the credit card.
*/
public function getCcLast4();
/**
* Gets the encrypted credit card number for the order payment.
*
* @return string|null Encrypted credit card number.
*/
public function getCcNumberEnc();
/**
* Gets the credit card owner for the order payment.
*
* @return string|null Credit card number.
*/
public function getCcOwner();
/**
* Gets the credit card secure verify for the order payment.
*
* @return string|null Credit card secure verify.
*/
public function getCcSecureVerify();
/**
* Gets the credit card SS issue for the order payment.
*
* @return string|null Credit card SS issue.
* @deprecated 100.1.0 unused
*/
public function getCcSsIssue();
/**
* Gets the credit card SS start month for the order payment.
*
* @return string|null Credit card SS start month.
* @deprecated 100.1.0 unused
*/
public function getCcSsStartMonth();
/**
* Gets the credit card SS start year for the order payment.
*
* @return string|null Credit card SS start year.
* @deprecated 100.1.0 unused
*/
public function getCcSsStartYear();
/**
* Gets the credit card status for the order payment.
*
* @return string|null Credit card status.
*/
public function getCcStatus();
/**
* Gets the credit card status description for the order payment.
*
* @return string|null Credit card status description.
*/
public function getCcStatusDescription();
/**
* Gets the credit card transaction id for the order payment.
*
* @return string|null Credit card transaction ID.
*/
public function getCcTransId();
/**
* Gets the credit card type for the order payment.
*
* @return string|null Credit card type.
*/
public function getCcType();
/**
* Gets the eCheck account name for the order payment.
*
* @return string|null eCheck account name.
*/
public function getEcheckAccountName();
/**
* Gets the eCheck account type for the order payment.
*
* @return string|null eCheck account type.
*/
public function getEcheckAccountType();
/**
* Gets the eCheck bank name for the order payment.
*
* @return string|null eCheck bank name.
*/
public function getEcheckBankName();
/**
* Gets the eCheck routing number for the order payment.
*
* @return string|null eCheck routing number.
*/
public function getEcheckRoutingNumber();
/**
* Gets the eCheck type for the order payment.
*
* @return string|null eCheck type.
*/
public function getEcheckType();
/**
* Gets the entity ID for the order payment.
*
* @return int|null Entity ID.
*/
public function getEntityId();
/**
* Sets entity ID.
*
* @param int $entityId
* @return $this
*/
public function setEntityId($entityId);
/**
* Gets the last transaction ID for the order payment.
*
* @return string|null Last transaction ID.
*/
public function getLastTransId();
/**
* Gets the method for the order payment.
*
* @return string Method.
*/
public function getMethod();
/**
* Gets the parent ID for the order payment.
*
* @return int|null Parent ID.
*/
public function getParentId();
/**
* Gets the PO number for the order payment.
*
* @return string|null PO number.
*/
public function getPoNumber();
/**
* Gets the protection eligibility for the order payment.
*
* @return string|null Protection eligibility.
*/
public function getProtectionEligibility();
/**
* Gets the quote payment ID for the order payment.
*
* @return int|null Quote payment ID.
*/
public function getQuotePaymentId();
/**
* Gets the shipping amount for the order payment.
*
* @return float|null Shipping amount.
*/
public function getShippingAmount();
/**
* Gets the shipping captured for the order payment.
*
* @return float|null Shipping captured.
*/
public function getShippingCaptured();
/**
* Gets the shipping refunded for the order payment.
*
* @return float|null Shipping refunded.
*/
public function getShippingRefunded();
/**
* Sets the parent ID for the order payment.
*
* @param int $id
* @return $this
*/
public function setParentId($id);
/**
* Sets the base shipping captured for the order payment.
*
* @param float $baseShippingCaptured
* @return $this
*/
public function setBaseShippingCaptured($baseShippingCaptured);
/**
* Sets the shipping captured for the order payment.
*
* @param float $shippingCaptured
* @return $this
*/
public function setShippingCaptured($shippingCaptured);
/**
* Sets the amount refunded for the order payment.
*
* @param float $amountRefunded
* @return $this
*/
public function setAmountRefunded($amountRefunded);
/**
* Sets the base amount paid for the order payment.
*
* @param float $baseAmountPaid
* @return $this
*/
public function setBaseAmountPaid($baseAmountPaid);
/**
* Sets the amount canceled for the order payment.
*
* @param float $amountCanceled
* @return $this
*/
public function setAmountCanceled($amountCanceled);
/**
* Sets the base amount authorized for the order payment.
*
* @param float $baseAmountAuthorized
* @return $this
*/
public function setBaseAmountAuthorized($baseAmountAuthorized);
/**
* Sets the base amount paid online for the order payment.
*
* @param float $baseAmountPaidOnline
* @return $this
*/
public function setBaseAmountPaidOnline($baseAmountPaidOnline);
/**
* Sets the base amount refunded online for the order payment.
*
* @param float $baseAmountRefundedOnline
* @return $this
*/
public function setBaseAmountRefundedOnline($baseAmountRefundedOnline);
/**
* Sets the base shipping amount for the order payment.
*
* @param float $amount
* @return $this
*/
public function setBaseShippingAmount($amount);
/**
* Sets the shipping amount for the order payment.
*
* @param float $amount
* @return $this
*/
public function setShippingAmount($amount);
/**
* Sets the amount paid for the order payment.
*
* @param float $amountPaid
* @return $this
*/
public function setAmountPaid($amountPaid);
/**
* Sets the amount authorized for the order payment.
*
* @param float $amountAuthorized
* @return $this
*/
public function setAmountAuthorized($amountAuthorized);
/**
* Sets the base amount ordered for the order payment.
*
* @param float $baseAmountOrdered
* @return $this
*/
public function setBaseAmountOrdered($baseAmountOrdered);
/**
* Sets the base shipping refunded amount for the order payment.
*
* @param float $baseShippingRefunded
* @return $this
*/
public function setBaseShippingRefunded($baseShippingRefunded);
/**
* Sets the shipping refunded for the order payment.
*
* @param float $shippingRefunded
* @return $this
*/
public function setShippingRefunded($shippingRefunded);
/**
* Sets the base amount refunded for the order payment.
*
* @param float $baseAmountRefunded
* @return $this
*/
public function setBaseAmountRefunded($baseAmountRefunded);
/**
* Sets the amount ordered for the order payment.
*
* @param float $amountOrdered
* @return $this
*/
public function setAmountOrdered($amountOrdered);
/**
* Sets the base amount canceled for the order payment.
*
* @param float $baseAmountCanceled
* @return $this
*/
public function setBaseAmountCanceled($baseAmountCanceled);
/**
* Sets the quote payment ID for the order payment.
*
* @param int $id
* @return $this
*/
public function setQuotePaymentId($id);
/**
* Sets the additional data for the order payment.
*
* @param string $additionalData
* @return $this
*/
public function setAdditionalData($additionalData);
/**
* Sets the credit card expiration month for the order payment.
*
* @param string $ccExpMonth
* @return $this
*/
public function setCcExpMonth($ccExpMonth);
/**
* Sets the credit card SS start year for the order payment.
*
* @param string $ccSsStartYear
* @return $this
*/
public function setCcSsStartYear($ccSsStartYear);
/**
* Sets the eCheck bank name for the order payment.
*
* @param string $echeckBankName
* @return $this
*/
public function setEcheckBankName($echeckBankName);
/**
* Sets the method for the order payment.
*
* @param string $method
* @return $this
*/
public function setMethod($method);
/**
* Sets the credit card debug request body for the order payment.
*
* @param string $ccDebugRequestBody
* @return $this
*/
public function setCcDebugRequestBody($ccDebugRequestBody);
/**
* Sets the credit card secure verify for the order payment.
*
* @param string $ccSecureVerify
* @return $this
*/
public function setCcSecureVerify($ccSecureVerify);
/**
* Sets the protection eligibility for the order payment.
*
* @param string $protectionEligibility
* @return $this
*/
public function setProtectionEligibility($protectionEligibility);
/**
* Sets the credit card approval for the order payment.
*
* @param string $ccApproval
* @return $this
*/
public function setCcApproval($ccApproval);
/**
* Sets the last four digits of the credit card for the order payment.
*
* @param string $ccLast4
* @return $this
*/
public function setCcLast4($ccLast4);
/**
* Sets the credit card status description for the order payment.
*
* @param string $description
* @return $this
*/
public function setCcStatusDescription($description);
/**
* Sets the eCheck type for the order payment.
*
* @param string $echeckType
* @return $this
*/
public function setEcheckType($echeckType);
/**
* Sets the credit card debug response serialized for the order payment.
*
* @param string $ccDebugResponseSerialized
* @return $this
*/
public function setCcDebugResponseSerialized($ccDebugResponseSerialized);
/**
* Sets the credit card SS start month for the order payment.
*
* @param string $ccSsStartMonth
* @return $this
*/
public function setCcSsStartMonth($ccSsStartMonth);
/**
* Sets the eCheck account type for the order payment.
*
* @param string $echeckAccountType
* @return $this
*/
public function setEcheckAccountType($echeckAccountType);
/**
* Sets the last transaction ID for the order payment.
*
* @param string $id
* @return $this
*/
public function setLastTransId($id);
/**
* Sets the credit card cid status for the order payment.
*
* @param string $ccCidStatus
* @return $this
*/
public function setCcCidStatus($ccCidStatus);
/**
* Sets the credit card owner for the order payment.
*
* @param string $ccOwner
* @return $this
*/
public function setCcOwner($ccOwner);
/**
* Sets the credit card type for the order payment.
*
* @param string $ccType
* @return $this
*/
public function setCcType($ccType);
/**
* Sets the PO number for the order payment.
*
* @param string $poNumber
* @return $this
*/
public function setPoNumber($poNumber);
/**
* Sets the credit card expiration year for the order payment.
*
* @param string $ccExpYear
* @return $this
*/
public function setCcExpYear($ccExpYear);
/**
* Sets the credit card status for the order payment.
*
* @param string $ccStatus
* @return $this
*/
public function setCcStatus($ccStatus);
/**
* Sets the eCheck routing number for the order payment.
*
* @param string $echeckRoutingNumber
* @return $this
*/
public function setEcheckRoutingNumber($echeckRoutingNumber);
/**
* Sets the account status for the order payment.
*
* @param string $accountStatus
* @return $this
*/
public function setAccountStatus($accountStatus);
/**
* Sets the anet transaction method for the order payment.
*
* @param string $anetTransMethod
* @return $this
*/
public function setAnetTransMethod($anetTransMethod);
/**
* Sets the credit card debug response body for the order payment.
*
* @param string $ccDebugResponseBody
* @return $this
*/
public function setCcDebugResponseBody($ccDebugResponseBody);
/**
* Sets the credit card SS issue for the order payment.
*
* @param string $ccSsIssue
* @return $this
*/
public function setCcSsIssue($ccSsIssue);
/**
* Sets the eCheck account name for the order payment.
*
* @param string $echeckAccountName
* @return $this
*/
public function setEcheckAccountName($echeckAccountName);
/**
* Sets the credit card avs status for the order payment.
*
* @param string $ccAvsStatus
* @return $this
*/
public function setCcAvsStatus($ccAvsStatus);
/**
* Sets the encrypted credit card number for the order payment.
*
* @param string $ccNumberEnc
* @return $this
*/
public function setCcNumberEnc($ccNumberEnc);
/**
* Sets the credit card transaction id for the order payment.
*
* @param string $id
* @return $this
*/
public function setCcTransId($id);
/**
* Sets the address status for the order payment.
*
* @param string $addressStatus
* @return $this
*/
public function setAddressStatus($addressStatus);
/**
* Retrieve existing extension attributes object or create a new one.
*
* @return \Magento\Sales\Api\Data\OrderPaymentExtensionInterface|null
*/
public function getExtensionAttributes();
/**
* Set an extension attributes object.
*
* @param \Magento\Sales\Api\Data\OrderPaymentExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(\Magento\Sales\Api\Data\OrderPaymentExtensionInterface $extensionAttributes);
}