Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.27 KB

File metadata and controls

31 lines (24 loc) · 1.27 KB

SnippetReference

A usage of a prompt snippet in a specific config variation.

Properties

Name Type Description Notes
aiConfigKey string The key of the config with a variation that references this snippet. [default to undefined]
aiConfigName string The name of the config with a variation that references this snippet. [default to undefined]
variationId string The ID of the variation that references this snippet. [default to undefined]
variationKey string The key of the config variation that references this snippet. [default to undefined]
variationName string The name of the variation that references this snippet. [default to undefined]
resourceVersion number The version of the snippet being referenced. [default to undefined]

Example

import { SnippetReference } from 'launchdarkly-api-typescript';

const instance: SnippetReference = {
    aiConfigKey,
    aiConfigName,
    variationId,
    variationKey,
    variationName,
    resourceVersion,
};

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