Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

ViewLinkRequest

Properties

Name Type Description Notes
keys List[str] Keys of the resources (flags, segments, AI configs) to link/unlink
comment str Optional comment for the link/unlink operation [optional] [default to '']
segment_identifiers List[ViewLinkRequestSegmentIdentifier] Identifiers of the segments to link/unlink (environmentId and segmentKey)

Example

from launchdarkly_api.models.view_link_request import ViewLinkRequest

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

# convert the object into a dict
view_link_request_dict = view_link_request_instance.to_dict()
# create an instance of ViewLinkRequest from a dict
view_link_request_from_dict = ViewLinkRequest.from_dict(view_link_request_dict)

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