Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

DisbursementOperationInput.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

DisbursementOperationInput

Properties

Name Type Description Notes
amount str [optional]
payment_account Account
instruction_set List[DisbursementInstruction]

Example

from fireblocks.models.disbursement_operation_input import DisbursementOperationInput

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

# convert the object into a dict
disbursement_operation_input_dict = disbursement_operation_input_instance.to_dict()
# create an instance of DisbursementOperationInput from a dict
disbursement_operation_input_from_dict = DisbursementOperationInput.from_dict(disbursement_operation_input_dict)

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