Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.26 KB

File metadata and controls

31 lines (24 loc) · 1.26 KB

AgentSkillReference

A usage of an agent skill in a specific config variation.

Properties

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

Example

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

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

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