Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

PayoutInstructionResponse.md

File metadata and controls

33 lines (24 loc) · 1.28 KB

PayoutInstructionResponse

Properties

Name Type Description Notes
id str [optional]
payee_account PayeeAccountResponse
amount InstructionAmount
state PayoutInstructionState
transactions List[Transaction]

Example

from fireblocks.models.payout_instruction_response import PayoutInstructionResponse

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

# convert the object into a dict
payout_instruction_response_dict = payout_instruction_response_instance.to_dict()
# create an instance of PayoutInstructionResponse from a dict
payout_instruction_response_from_dict = PayoutInstructionResponse.from_dict(payout_instruction_response_dict)

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