Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 974 Bytes

File metadata and controls

30 lines (21 loc) · 974 Bytes

RemoveOperation

Properties

Name Type Description Notes
op str
path str A JSON Pointer path pointing to the location to move/copy from.

Example

from halo_client.models.remove_operation import RemoveOperation

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

# convert the object into a dict
remove_operation_dict = remove_operation_instance.to_dict()
# create an instance of RemoveOperation from a dict
remove_operation_from_dict = RemoveOperation.from_dict(remove_operation_dict)

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