Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 826 Bytes

File metadata and controls

26 lines (19 loc) · 826 Bytes

FlagStatusRep

Properties

Name Type Description Notes
name string Status of the flag [default to undefined]
lastRequested string Timestamp of last time flag was requested [optional] [default to undefined]
_default any Default value seen from code [optional] [default to undefined]
_links { [key: string]: Link; } [default to undefined]

Example

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

const instance: FlagStatusRep = {
    name,
    lastRequested,
    _default,
    _links,
};

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