Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.44 KB

File metadata and controls

34 lines (25 loc) · 1.44 KB

DisbursementOperationExecution

Properties

Name Type Description Notes
input DisbursementOperationInput
output DisbursementOperationExecutionOutput [optional]
payout_id str [optional]
started_at float
finished_at float [optional]
failure OperationExecutionFailure [optional]

Example

from fireblocks.models.disbursement_operation_execution import DisbursementOperationExecution

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

# convert the object into a dict
disbursement_operation_execution_dict = disbursement_operation_execution_instance.to_dict()
# create an instance of DisbursementOperationExecution from a dict
disbursement_operation_execution_from_dict = DisbursementOperationExecution.from_dict(disbursement_operation_execution_dict)

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