Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.89 KB

File metadata and controls

39 lines (30 loc) · 1.89 KB

FlagLinkRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
key str The flag link key [optional]
integration_key str The integration key for an integration whose <code>manifest.json</code> includes the <code>flagLink</code> capability, if this is a flag link for an existing integration [optional]
id str The ID of this flag link
deep_link str The URL for the external resource the flag is linked to
timestamp TimestampRep
title str The title of the flag link [optional]
description str The description of the flag link [optional]
metadata Dict[str, str] The metadata required by this integration in order to create a flag link, if this is a flag link for an existing integration. Defined in the integration's <code>manifest.json</code> file under <code>flagLink</code>. [optional]
created_at int
member FlagLinkMember [optional]

Example

from launchdarkly_api.models.flag_link_rep import FlagLinkRep

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

# convert the object into a dict
flag_link_rep_dict = flag_link_rep_instance.to_dict()
# create an instance of FlagLinkRep from a dict
flag_link_rep_from_dict = FlagLinkRep.from_dict(flag_link_rep_dict)

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