Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.03 KB

File metadata and controls

26 lines (19 loc) · 1.03 KB

LayerSnapshotRep

Properties

Name Type Description Notes
key string Key of the layer the experiment was part of [default to undefined]
name string Layer name at the time this experiment iteration was stopped [default to undefined]
reservationPercent number Percent of layer traffic that was reserved in the layer for this experiment iteration [default to undefined]
otherReservationPercent number Percent of layer traffic that was reserved for other experiments in the same environment, when this experiment iteration was stopped [default to undefined]

Example

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

const instance: LayerSnapshotRep = {
    key,
    name,
    reservationPercent,
    otherReservationPercent,
};

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