Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

DisbursementOperationConfigParams.md

File metadata and controls

30 lines (21 loc) · 1.24 KB

DisbursementOperationConfigParams

Properties

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

Example

from fireblocks.models.disbursement_operation_config_params import DisbursementOperationConfigParams

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

# convert the object into a dict
disbursement_operation_config_params_dict = disbursement_operation_config_params_instance.to_dict()
# create an instance of DisbursementOperationConfigParams from a dict
disbursement_operation_config_params_from_dict = DisbursementOperationConfigParams.from_dict(disbursement_operation_config_params_dict)

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