You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromlaunchdarkly_api.models.announcement_patch_operationimportAnnouncementPatchOperation# TODO update the JSON string belowjson="{}"# create an instance of AnnouncementPatchOperation from a JSON stringannouncement_patch_operation_instance=AnnouncementPatchOperation.from_json(json)
# print the JSON string representation of the objectprint(AnnouncementPatchOperation.to_json())
# convert the object into a dictannouncement_patch_operation_dict=announcement_patch_operation_instance.to_dict()
# create an instance of AnnouncementPatchOperation from a dictannouncement_patch_operation_from_dict=AnnouncementPatchOperation.from_dict(announcement_patch_operation_dict)