| Name | Type | Description | Notes |
|---|---|---|---|
| comment | str | Optional description of changes | [optional] |
| instructions | List[PatchSegmentExpiringTargetInstruction] | Semantic patch instructions for the desired changes to the resource |
from launchdarkly_api.models.patch_segment_expiring_target_input_rep import PatchSegmentExpiringTargetInputRep
# TODO update the JSON string below
json = "{}"
# create an instance of PatchSegmentExpiringTargetInputRep from a JSON string
patch_segment_expiring_target_input_rep_instance = PatchSegmentExpiringTargetInputRep.from_json(json)
# print the JSON string representation of the object
print(PatchSegmentExpiringTargetInputRep.to_json())
# convert the object into a dict
patch_segment_expiring_target_input_rep_dict = patch_segment_expiring_target_input_rep_instance.to_dict()
# create an instance of PatchSegmentExpiringTargetInputRep from a dict
patch_segment_expiring_target_input_rep_from_dict = PatchSegmentExpiringTargetInputRep.from_dict(patch_segment_expiring_target_input_rep_dict)