You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromfireblocks.models.conversion_operation_execution_outputimportConversionOperationExecutionOutput# TODO update the JSON string belowjson="{}"# create an instance of ConversionOperationExecutionOutput from a JSON stringconversion_operation_execution_output_instance=ConversionOperationExecutionOutput.from_json(json)
# print the JSON string representation of the objectprint(ConversionOperationExecutionOutput.to_json())
# convert the object into a dictconversion_operation_execution_output_dict=conversion_operation_execution_output_instance.to_dict()
# create an instance of ConversionOperationExecutionOutput from a dictconversion_operation_execution_output_from_dict=ConversionOperationExecutionOutput.from_dict(conversion_operation_execution_output_dict)