| Name |
Type |
Description |
Notes |
| op |
str |
The type of operation to perform |
|
| path |
str |
A JSON Pointer string specifying the part of the document to operate on |
|
| value |
object |
A JSON value used in "add", "replace", and "test" operations |
[optional] |
from launchdarkly_api.models.patch_operation import PatchOperation
# TODO update the JSON string below
json = "{}"
# create an instance of PatchOperation from a JSON string
patch_operation_instance = PatchOperation.from_json(json)
# print the JSON string representation of the object
print(PatchOperation.to_json())
# convert the object into a dict
patch_operation_dict = patch_operation_instance.to_dict()
# create an instance of PatchOperation from a dict
patch_operation_from_dict = PatchOperation.from_dict(patch_operation_dict)
[Back to Model list] [Back to API list] [Back to README]