Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

DisbursementPercentageInstruction.md

File metadata and controls

31 lines (22 loc) · 1.19 KB

DisbursementPercentageInstruction

Properties

Name Type Description Notes
payee_account Destination
asset_id str
percentage str

Example

from fireblocks.models.disbursement_percentage_instruction import DisbursementPercentageInstruction

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

# convert the object into a dict
disbursement_percentage_instruction_dict = disbursement_percentage_instruction_instance.to_dict()
# create an instance of DisbursementPercentageInstruction from a dict
disbursement_percentage_instruction_from_dict = DisbursementPercentageInstruction.from_dict(disbursement_percentage_instruction_dict)

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