Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 2.04 KB

File metadata and controls

50 lines (43 loc) · 2.04 KB

AIConfig

Properties

Name Type Description Notes
_access AiConfigsAccess [optional] [default to undefined]
_links ParentAndSelfLinks [optional] [default to undefined]
description string [default to undefined]
key string [default to undefined]
_maintainer AIConfigMaintainer [optional] [default to undefined]
mode string [optional] [default to ModeEnum_Completion]
name string [default to undefined]
tags Array<string> [default to undefined]
version number [default to undefined]
variations Array<AIConfigVariation> [default to undefined]
createdAt number [default to undefined]
updatedAt number [default to undefined]
evaluationMetricKey string Evaluation metric key for this AI Config [optional] [default to undefined]
evaluationMetricKeys Array<string> List of evaluation metric keys for this AI Config [optional] [default to undefined]
isInverted boolean Whether the evaluation metric is inverted, meaning a lower value is better if set as true [optional] [default to undefined]
dependencies Array<AIConfigDependency> Resources that depend on this AI Config, grouped by type [optional] [default to undefined]

Example

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

const instance: AIConfig = {
    _access,
    _links,
    description,
    key,
    _maintainer,
    mode,
    name,
    tags,
    version,
    variations,
    createdAt,
    updatedAt,
    evaluationMetricKey,
    evaluationMetricKeys,
    isInverted,
    dependencies,
};

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