Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.36 KB

FlagLinkPost.md

File metadata and controls

30 lines (24 loc) · 1.36 KB

LaunchDarklyApi::FlagLinkPost

Properties

Name Type Description Notes
key String The flag link key [optional]
integration_key String 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 Integer [optional]
deep_link String The URL for the external resource you are linking the flag to [optional]
title String The title of the flag link [optional]
description String The description of the flag link [optional]
metadata Hash<String, String> 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]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::FlagLinkPost.new(
  key: example-flag-link,
  integration_key: null,
  timestamp: null,
  deep_link: https://example.com/archives/123123123,
  title: Example link title,
  description: Example link description,
  metadata: null
)