Name |
Type |
Description |
Notes |
payee_account |
Destination |
|
|
asset_id |
str |
|
|
amount |
str |
|
|
percentage |
str |
|
|
from fireblocks.models.disbursement_instruction import DisbursementInstruction
# TODO update the JSON string below
json = "{}"
# create an instance of DisbursementInstruction from a JSON string
disbursement_instruction_instance = DisbursementInstruction.from_json(json)
# print the JSON string representation of the object
print(DisbursementInstruction.to_json())
# convert the object into a dict
disbursement_instruction_dict = disbursement_instruction_instance.to_dict()
# create an instance of DisbursementInstruction from a dict
disbursement_instruction_from_dict = DisbursementInstruction.from_dict(disbursement_instruction_dict)
[Back to Model list] [Back to API list] [Back to README]