Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 792 Bytes

File metadata and controls

24 lines (17 loc) · 792 Bytes

RuleClause

Properties

Name Type Description Notes
attribute string The attribute the rule applies to, for example, last name or email address [optional] [default to undefined]
op string The operator to apply to the given attribute [optional] [default to undefined]
negate boolean Whether the operator should be negated [optional] [default to undefined]

Example

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

const instance: RuleClause = {
    attribute,
    op,
    negate,
};

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