Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

PatchRequestInner.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

PatchRequestInner

Properties

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.

Example

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]