Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

AnnouncementPatchOperation

Properties

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]

Example

from launchdarkly_api.models.announcement_patch_operation import AnnouncementPatchOperation

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

# convert the object into a dict
announcement_patch_operation_dict = announcement_patch_operation_instance.to_dict()
# create an instance of AnnouncementPatchOperation from a dict
announcement_patch_operation_from_dict = AnnouncementPatchOperation.from_dict(announcement_patch_operation_dict)

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