Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.52 KB

DisbursementOperationExecutionParamsExecutionParams.md

File metadata and controls

31 lines (22 loc) · 1.52 KB

DisbursementOperationExecutionParamsExecutionParams

Properties

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

Example

from fireblocks.models.disbursement_operation_execution_params_execution_params import DisbursementOperationExecutionParamsExecutionParams

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

# convert the object into a dict
disbursement_operation_execution_params_execution_params_dict = disbursement_operation_execution_params_execution_params_instance.to_dict()
# create an instance of DisbursementOperationExecutionParamsExecutionParams from a dict
disbursement_operation_execution_params_execution_params_from_dict = DisbursementOperationExecutionParamsExecutionParams.from_dict(disbursement_operation_execution_params_execution_params_dict)

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