Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 745 Bytes

File metadata and controls

24 lines (17 loc) · 745 Bytes

FeatureFlagStatus

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]

Example

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

const instance: FeatureFlagStatus = {
    name,
    lastRequested,
    _default,
};

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