Name |
Type |
Description |
Notes |
path |
str |
A JSON Pointer path. |
|
value |
object |
The value to add or replace. |
[optional] |
op |
str |
The operation to perform. |
|
from flightctl.models.patch_request_inner import PatchRequestInner
# TODO update the JSON string below
json = "{}"
# create an instance of PatchRequestInner from a JSON string
patch_request_inner_instance = PatchRequestInner.from_json(json)
# print the JSON string representation of the object
print(PatchRequestInner.to_json())
# convert the object into a dict
patch_request_inner_dict = patch_request_inner_instance.to_dict()
# create an instance of PatchRequestInner from a dict
patch_request_inner_from_dict = PatchRequestInner.from_dict(patch_request_inner_dict)
[Back to Model list] [Back to API list] [Back to README]