@@ -40,6 +40,7 @@ def __init__(self, client, prefill=None):
4040 self ._state = None
4141 self ._zip = None
4242 self ._country_code = None
43+ self ._billing_country_code = None
4344 self ._ip_address = None
4445 self ._fingerprint = None
4546 self ._token_type = None
@@ -50,7 +51,8 @@ def __init__(self, client, prefill=None):
5051 self ._sandbox = None
5152 self ._created_at = None
5253 self ._preferred_card_type = None
53- self ._vault_id = None
54+ self ._initial_scheme_transaction_id = None
55+ self ._payment_account_reference = None
5456 if prefill is not None :
5557 self .fill_with_data (prefill )
5658
@@ -384,6 +386,19 @@ def country_code(self, val):
384386 self ._country_code = val
385387 return self
386388
389+ @property
390+ def billing_country_code (self ):
391+ """Get billing_country_code"""
392+ return self ._billing_country_code
393+
394+ @billing_country_code .setter
395+ def billing_country_code (self , val ):
396+ """Set billing_country_code
397+ Keyword argument:
398+ val -- New billing_country_code value"""
399+ self ._billing_country_code = val
400+ return self
401+
387402 @property
388403 def ip_address (self ):
389404 """Get ip_address"""
@@ -515,16 +530,29 @@ def preferred_card_type(self, val):
515530 return self
516531
517532 @property
518- def vault_id (self ):
519- """Get vault_id"""
520- return self ._vault_id
533+ def initial_scheme_transaction_id (self ):
534+ """Get initial_scheme_transaction_id"""
535+ return self ._initial_scheme_transaction_id
536+
537+ @initial_scheme_transaction_id .setter
538+ def initial_scheme_transaction_id (self , val ):
539+ """Set initial_scheme_transaction_id
540+ Keyword argument:
541+ val -- New initial_scheme_transaction_id value"""
542+ self ._initial_scheme_transaction_id = val
543+ return self
544+
545+ @property
546+ def payment_account_reference (self ):
547+ """Get payment_account_reference"""
548+ return self ._payment_account_reference
521549
522- @vault_id .setter
523- def vault_id (self , val ):
524- """Set vault_id
550+ @payment_account_reference .setter
551+ def payment_account_reference (self , val ):
552+ """Set payment_account_reference
525553 Keyword argument:
526- val -- New vault_id value"""
527- self ._vault_id = val
554+ val -- New payment_account_reference value"""
555+ self ._payment_account_reference = val
528556 return self
529557
530558 def fill_with_data (self , data ):
@@ -579,6 +607,8 @@ def fill_with_data(self, data):
579607 self .zip = data ["zip" ]
580608 if "country_code" in data .keys ():
581609 self .country_code = data ["country_code" ]
610+ if "billing_country_code" in data .keys ():
611+ self .billing_country_code = data ["billing_country_code" ]
582612 if "ip_address" in data .keys ():
583613 self .ip_address = data ["ip_address" ]
584614 if "fingerprint" in data .keys ():
@@ -599,8 +629,10 @@ def fill_with_data(self, data):
599629 self .created_at = data ["created_at" ]
600630 if "preferred_card_type" in data .keys ():
601631 self .preferred_card_type = data ["preferred_card_type" ]
602- if "vault_id" in data .keys ():
603- self .vault_id = data ["vault_id" ]
632+ if "initial_scheme_transaction_id" in data .keys ():
633+ self .initial_scheme_transaction_id = data ["initial_scheme_transaction_id" ]
634+ if "payment_account_reference" in data .keys ():
635+ self .payment_account_reference = data ["payment_account_reference" ]
604636
605637 return self
606638
@@ -630,6 +662,7 @@ def to_json(self):
630662 "state" : self .state ,
631663 "zip" : self .zip ,
632664 "country_code" : self .country_code ,
665+ "billing_country_code" : self .billing_country_code ,
633666 "ip_address" : self .ip_address ,
634667 "fingerprint" : self .fingerprint ,
635668 "token_type" : self .token_type ,
@@ -640,7 +673,8 @@ def to_json(self):
640673 "sandbox" : self .sandbox ,
641674 "created_at" : self .created_at ,
642675 "preferred_card_type" : self .preferred_card_type ,
643- "vault_id" : self .vault_id ,
676+ "initial_scheme_transaction_id" : self .initial_scheme_transaction_id ,
677+ "payment_account_reference" : self .payment_account_reference ,
644678 }
645679
646680 def all (self , options = {}):
0 commit comments