Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 847 Bytes

File metadata and controls

24 lines (17 loc) · 847 Bytes

ContextAttributeName

Properties

Name Type Description Notes
name string A context attribute's name. [default to undefined]
weight number A relative estimate of the number of contexts seen recently that have an attribute with the associated name. [default to undefined]
redacted boolean Whether or not the attribute has one or more redacted values. [optional] [default to undefined]

Example

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

const instance: ContextAttributeName = {
    name,
    weight,
    redacted,
};

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