File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,25 @@ class ARPC(Creatable):
2121 @classmethod
2222 def create (
2323 cls ,
24+ number : str ,
2425 arqc : str ,
25- key_derivation_method : str ,
2626 arpc_method : str ,
27- txn_data : str ,
27+ transaction_data : str ,
28+ response_code : str ,
29+ transaction_counter : str ,
30+ pan_sequence : str ,
31+ unique_number : str ,
2832 * ,
2933 session : Session = global_session ,
30- ** data ,
3134 ) -> 'ARPC' :
3235 req = ARPCRequest (
36+ number = number ,
3337 arqc = arqc ,
34- key_derivation_method = key_derivation_method ,
3538 arpc_method = arpc_method ,
36- txn_data = txn_data ,
37- ** data ,
39+ transaction_data = transaction_data ,
40+ response_code = response_code ,
41+ transaction_counter = transaction_counter ,
42+ pan_sequence = pan_sequence ,
43+ unique_number = unique_number ,
3844 )
3945 return cast ('ARPC' , cls ._create (session = session , ** req .dict ()))
Original file line number Diff line number Diff line change 1- __version__ = '0.7.4 '
1+ __version__ = '0.7.5.dev1 '
22CLIENT_VERSION = __version__
33API_VERSION = '2020-03-19'
Original file line number Diff line number Diff line change 11requests == 2.25.1
2- cuenca-validations == 0.9.2
2+ cuenca-validations == 0.9.3.dev1
33dataclasses >= 0.7 ;python_version < "3.7"
You can’t perform that action at this time.
0 commit comments