An expression which can be applied to filter a list of subscription inputs

interface InputFilterCondition {
    caseSensitive: boolean;
    inputId: string;
    inputValue: string;
    operator: InputFilterOperator;
}

Properties

caseSensitive: boolean

Whether or not to do a case sensitive match

inputId: string

The Id of the input to filter on

inputValue: string

The "expected" input value to compare with the actual input value

The operator applied between the expected and actual input value