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
Identifiers of the segments to link/unlink (environmentId and segmentKey)
filter
str
Optional filter string to determine which resources should be linked. Resources only need to match either the filter or explicitly-listed keys to be linked (union). Uses the same queryfilter syntax as the segments list endpoint. Supported filters for segments: query, tags, keys, excludedKeys, unbounded, external, view, type
[optional]
environment_id
str
Required when using filter for segment resources. Specifies which environment to query for segments matching the filter. Ignored when only using explicit segmentIdentifiers (since each identifier contains its own environmentId).
[optional]
comment
str
Optional comment for the link/unlink operation
[optional] [default to '']
Example
fromlaunchdarkly_api.models.view_link_request_segment_identifiersimportViewLinkRequestSegmentIdentifiers# TODO update the JSON string belowjson="{}"# create an instance of ViewLinkRequestSegmentIdentifiers from a JSON stringview_link_request_segment_identifiers_instance=ViewLinkRequestSegmentIdentifiers.from_json(json)
# print the JSON string representation of the objectprint(ViewLinkRequestSegmentIdentifiers.to_json())
# convert the object into a dictview_link_request_segment_identifiers_dict=view_link_request_segment_identifiers_instance.to_dict()
# create an instance of ViewLinkRequestSegmentIdentifiers from a dictview_link_request_segment_identifiers_from_dict=ViewLinkRequestSegmentIdentifiers.from_dict(view_link_request_segment_identifiers_dict)