Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.13 KB

File metadata and controls

32 lines (25 loc) · 1.13 KB

AIConfigPatch

Properties

Name Type Description Notes
description string [optional] [default to undefined]
maintainerId string [optional] [default to undefined]
maintainerTeamKey string [optional] [default to undefined]
name string [optional] [default to undefined]
tags Array<string> [optional] [default to undefined]
evaluationMetricKey string Evaluation metric key 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]

Example

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

const instance: AIConfigPatch = {
    description,
    maintainerId,
    maintainerTeamKey,
    name,
    tags,
    evaluationMetricKey,
    isInverted,
};

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