Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

MoveOperation

Properties

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

Example

from halo_client.models.move_operation import MoveOperation

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

# convert the object into a dict
move_operation_dict = move_operation_instance.to_dict()
# create an instance of MoveOperation from a dict
move_operation_from_dict = MoveOperation.from_dict(move_operation_dict)

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