| Name |
Type |
Description |
Notes |
| 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. Do not include for URL flag links. |
[optional] |
| timestamp |
int |
|
[optional] |
| deep_link |
str |
The URL for the external resource you are linking the flag to |
[optional] |
| 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] |
from launchdarkly_api.models.flag_link_post import FlagLinkPost
# TODO update the JSON string below
json = "{}"
# create an instance of FlagLinkPost from a JSON string
flag_link_post_instance = FlagLinkPost.from_json(json)
# print the JSON string representation of the object
print(FlagLinkPost.to_json())
# convert the object into a dict
flag_link_post_dict = flag_link_post_instance.to_dict()
# create an instance of FlagLinkPost from a dict
flag_link_post_from_dict = FlagLinkPost.from_dict(flag_link_post_dict)
[Back to Model list] [Back to API list] [Back to README]