Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.15 KB

File metadata and controls

35 lines (26 loc) · 1.15 KB

PixAddress

Properties

Name Type Description Notes
account_holder AccountHolderDetails
pix_key str
key_type str
bank_name str [optional]
bank_code str [optional]
qr_code str The QR code to be used for the transfer [optional]
expiration_date str The expiration date of the QR code [optional]

Example

from fireblocks.models.pix_address import PixAddress

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

# convert the object into a dict
pix_address_dict = pix_address_instance.to_dict()
# create an instance of PixAddress from a dict
pix_address_from_dict = PixAddress.from_dict(pix_address_dict)

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