Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

PayidAddress

Properties

Name Type Description Notes
account_holder AccountHolderDetails
value str The PayID identifier (email, phone, ABN, or organization ID)
type str The type of PayID being used
bsb str Bank State Branch (BSB) number (6 digits, format XXX-XXX) [optional]
account_number str Australian bank account number

Example

from fireblocks.models.payid_address import PayidAddress

# TODO update the JSON string below
json = "{}"
# create an instance of PayidAddress from a JSON string
payid_address_instance = PayidAddress.from_json(json)
# print the JSON string representation of the object
print(PayidAddress.to_json())

# convert the object into a dict
payid_address_dict = payid_address_instance.to_dict()
# create an instance of PayidAddress from a dict
payid_address_from_dict = PayidAddress.from_dict(payid_address_dict)

[Back to Model list] [Back to API list] [Back to README]