Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

PaymentInstructions

Properties

Name Type Description Notes
type str The type of destination. Use "BLOCKCHAIN" for blockchain address destinations.
address InternalTransferAddress
reference_id str [optional]

Example

from fireblocks.models.payment_instructions import PaymentInstructions

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

# convert the object into a dict
payment_instructions_dict = payment_instructions_instance.to_dict()
# create an instance of PaymentInstructions from a dict
payment_instructions_from_dict = PaymentInstructions.from_dict(payment_instructions_dict)

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