Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

DisbursementAmountInstruction.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

DisbursementAmountInstruction

Properties

Name Type Description Notes
payee_account Destination
asset_id str
amount str

Example

from fireblocks.models.disbursement_amount_instruction import DisbursementAmountInstruction

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

# convert the object into a dict
disbursement_amount_instruction_dict = disbursement_amount_instruction_instance.to_dict()
# create an instance of DisbursementAmountInstruction from a dict
disbursement_amount_instruction_from_dict = DisbursementAmountInstruction.from_dict(disbursement_amount_instruction_dict)

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