Name | Type | Description | Notes |
---|---|---|---|
operation_id | str | ||
status | ExecutionOperationStatus | ||
operation_type | ScreeningOperationType | ||
validation_failure | ScreeningValidationFailure | [optional] | |
execution | ScreeningOperationExecution | [optional] |
from fireblocks.models.execution_screening_operation import ExecutionScreeningOperation
# TODO update the JSON string below
json = "{}"
# create an instance of ExecutionScreeningOperation from a JSON string
execution_screening_operation_instance = ExecutionScreeningOperation.from_json(json)
# print the JSON string representation of the object
print(ExecutionScreeningOperation.to_json())
# convert the object into a dict
execution_screening_operation_dict = execution_screening_operation_instance.to_dict()
# create an instance of ExecutionScreeningOperation from a dict
execution_screening_operation_from_dict = ExecutionScreeningOperation.from_dict(execution_screening_operation_dict)