| Name |
Type |
Description |
Notes |
| op |
str |
|
|
| path |
str |
A JSON Pointer path pointing to the location to move/copy from. |
|
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]