Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

ConfigConversionOperationSnapshot.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

ConfigConversionOperationSnapshot

Properties

Name Type Description Notes
operation_id str
type ConversionOperationType
params ConversionOperationConfigParams

Example

from fireblocks.models.config_conversion_operation_snapshot import ConfigConversionOperationSnapshot

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

# convert the object into a dict
config_conversion_operation_snapshot_dict = config_conversion_operation_snapshot_instance.to_dict()
# create an instance of ConfigConversionOperationSnapshot from a dict
config_conversion_operation_snapshot_from_dict = ConfigConversionOperationSnapshot.from_dict(config_conversion_operation_snapshot_dict)

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