@@ -20,6 +20,11 @@ class CardPaymentPayload extends PaymentParent
20
20
public string $ acquirer_and_seller ;
21
21
public int $ commission ;
22
22
public string $ provider_type ;
23
+ public string $ bank_name ;
24
+ public string $ owner_name ;
25
+ public bool $ signature_required ;
26
+ public string $ tapxphone_terminal ;
27
+ public string $ transaction_id ;
23
28
24
29
public function __construct (
25
30
string $ value ,
@@ -34,7 +39,12 @@ public function __construct(
34
39
string $ receipt_no = '' ,
35
40
string $ acquirer_and_seller = '' ,
36
41
int $ commission = 0 ,
37
- string $ provider_type = ''
42
+ string $ provider_type = '' ,
43
+ string $ bank_name = '' ,
44
+ string $ owner_name = '' ,
45
+ bool $ signature_required = false ,
46
+ string $ tapxphone_terminal = '' ,
47
+ string $ transaction_id = ''
38
48
) {
39
49
parent ::__construct (parent ::TYPE_CARD , $ value , $ label );
40
50
@@ -59,5 +69,11 @@ public function __construct(
59
69
60
70
$ this ->provider_type = $ provider_type ;
61
71
}
72
+
73
+ $ this ->bank_name = $ bank_name ;
74
+ $ this ->owner_name = $ owner_name ;
75
+ $ this ->signature_required = $ signature_required ;
76
+ $ this ->tapxphone_terminal = $ tapxphone_terminal ;
77
+ $ this ->transaction_id = $ transaction_id ;
62
78
}
63
79
}
0 commit comments