Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.05 KB

File metadata and controls

30 lines (23 loc) · 1.05 KB

LayerRep

Properties

Name Type Description Notes
key string The key of the layer [default to undefined]
name string The name of the layer [default to undefined]
description string The description of the layer [default to undefined]
createdAt number [default to undefined]
randomizationUnit string The unit of randomization for the layer [optional] [default to undefined]
environments { [key: string]: LayerConfigurationRep; } The layer configurations for each requested environment [optional] [default to undefined]

Example

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

const instance: LayerRep = {
    key,
    name,
    description,
    createdAt,
    randomizationUnit,
    environments,
};

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