Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

PayoutInstruction.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

PayoutInstruction

Properties

Name Type Description Notes
id str [optional]
payee_account PayeeAccount
amount InstructionAmount

Example

from fireblocks.models.payout_instruction import PayoutInstruction

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

# convert the object into a dict
payout_instruction_dict = payout_instruction_instance.to_dict()
# create an instance of PayoutInstruction from a dict
payout_instruction_from_dict = PayoutInstruction.from_dict(payout_instruction_dict)

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