| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| payee_account | PayeeAccountResponse | ||
| amount | InstructionAmount | ||
| state | PayoutInstructionState | ||
| transactions | List[Transaction] |
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)