Name | Type | Description | Notes |
---|---|---|---|
operation_id | str | ||
type | DisbursementOperationType | ||
params | DisbursementOperationConfigParams |
from fireblocks.models.config_disbursement_operation_snapshot import ConfigDisbursementOperationSnapshot
# TODO update the JSON string below
json = "{}"
# create an instance of ConfigDisbursementOperationSnapshot from a JSON string
config_disbursement_operation_snapshot_instance = ConfigDisbursementOperationSnapshot.from_json(json)
# print the JSON string representation of the object
print(ConfigDisbursementOperationSnapshot.to_json())
# convert the object into a dict
config_disbursement_operation_snapshot_dict = config_disbursement_operation_snapshot_instance.to_dict()
# create an instance of ConfigDisbursementOperationSnapshot from a dict
config_disbursement_operation_snapshot_from_dict = ConfigDisbursementOperationSnapshot.from_dict(config_disbursement_operation_snapshot_dict)