Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.24 KB

File metadata and controls

38 lines (31 loc) · 1.24 KB

PromptSnippet

Properties

Name Type Description Notes
key string [default to undefined]
_access AiConfigsAccess [optional] [default to undefined]
_links ParentAndSelfLinks [optional] [default to undefined]
_maintainer AIConfigMaintainer [optional] [default to undefined]
name string [default to undefined]
description string [optional] [default to undefined]
text string The text content of the prompt snippet [default to undefined]
tags Array<string> [default to undefined]
version number [default to undefined]
createdAt number [default to undefined]

Example

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

const instance: PromptSnippet = {
    key,
    _access,
    _links,
    _maintainer,
    name,
    description,
    text,
    tags,
    version,
    createdAt,
};

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