Name | Type | Description | Notes |
---|---|---|---|
operation_id | str | ||
type | TransferOperationType | ||
params | TransferOperationConfigParams | ||
status | ConfigOperationStatus | ||
validation_failure | TransferValidationFailure | [optional] |
from fireblocks.models.transfer_config_operation import TransferConfigOperation
# TODO update the JSON string below
json = "{}"
# create an instance of TransferConfigOperation from a JSON string
transfer_config_operation_instance = TransferConfigOperation.from_json(json)
# print the JSON string representation of the object
print(TransferConfigOperation.to_json())
# convert the object into a dict
transfer_config_operation_dict = transfer_config_operation_instance.to_dict()
# create an instance of TransferConfigOperation from a dict
transfer_config_operation_from_dict = TransferConfigOperation.from_dict(transfer_config_operation_dict)