Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 991 Bytes

File metadata and controls

31 lines (22 loc) · 991 Bytes

AddOperation

Properties

Name Type Description Notes
op str
path str A JSON Pointer path pointing to the location to move/copy from.
value object Value can be any JSON value

Example

from halo_client.models.add_operation import AddOperation

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

# convert the object into a dict
add_operation_dict = add_operation_instance.to_dict()
# create an instance of AddOperation from a dict
add_operation_from_dict = AddOperation.from_dict(add_operation_dict)

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