Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

DisbursementOperationExecutionParams.md

File metadata and controls

30 lines (21 loc) · 1.31 KB

DisbursementOperationExecutionParams

Properties

Name Type Description Notes
config_operation_id str
execution_params DisbursementOperationExecutionParamsExecutionParams [optional]

Example

from fireblocks.models.disbursement_operation_execution_params import DisbursementOperationExecutionParams

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

# convert the object into a dict
disbursement_operation_execution_params_dict = disbursement_operation_execution_params_instance.to_dict()
# create an instance of DisbursementOperationExecutionParams from a dict
disbursement_operation_execution_params_from_dict = DisbursementOperationExecutionParams.from_dict(disbursement_operation_execution_params_dict)

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