Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

DisbursementInstructionOutput.md

File metadata and controls

31 lines (22 loc) · 1.18 KB

DisbursementInstructionOutput

Properties

Name Type Description Notes
amount AssetAmount
fee AssetAmount
payee_account Destination

Example

from fireblocks.models.disbursement_instruction_output import DisbursementInstructionOutput

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

# convert the object into a dict
disbursement_instruction_output_dict = disbursement_instruction_output_instance.to_dict()
# create an instance of DisbursementInstructionOutput from a dict
disbursement_instruction_output_from_dict = DisbursementInstructionOutput.from_dict(disbursement_instruction_output_dict)

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