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
The type of change to make to the context's removal date from this segment
context_key
str
A unique key used to represent the context
context_kind
str
The kind of context
target_type
str
The segment's target type
value
int
The time, in Unix milliseconds, when the context should be removed from this segment. Required if <code>kind</code> is <code>addExpiringTarget</code> or <code>updateExpiringTarget</code>.
[optional]
version
int
The version of the expiring target to update. Optional and only used if <code>kind</code> is <code>updateExpiringTarget</code>. If included, update will fail if version doesn't match current version of the expiring target.
[optional]
Example
fromlaunchdarkly_api.models.patch_segment_expiring_target_instructionimportPatchSegmentExpiringTargetInstruction# TODO update the JSON string belowjson="{}"# create an instance of PatchSegmentExpiringTargetInstruction from a JSON stringpatch_segment_expiring_target_instruction_instance=PatchSegmentExpiringTargetInstruction.from_json(json)
# print the JSON string representation of the objectprint(PatchSegmentExpiringTargetInstruction.to_json())
# convert the object into a dictpatch_segment_expiring_target_instruction_dict=patch_segment_expiring_target_instruction_instance.to_dict()
# create an instance of PatchSegmentExpiringTargetInstruction from a dictpatch_segment_expiring_target_instruction_from_dict=PatchSegmentExpiringTargetInstruction.from_dict(patch_segment_expiring_target_instruction_dict)