Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

PatchSegmentRequest

Properties

Name Type Description Notes
comment str Optional description of changes [optional]
instructions List[PatchSegmentInstruction] Semantic patch instructions for the desired changes to the resource

Example

from launchdarkly_api.models.patch_segment_request import PatchSegmentRequest

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

# convert the object into a dict
patch_segment_request_dict = patch_segment_request_instance.to_dict()
# create an instance of PatchSegmentRequest from a dict
patch_segment_request_from_dict = PatchSegmentRequest.from_dict(patch_segment_request_dict)

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