Package version:

Conditions required to match a header

interface HeaderMatch {
    exactMatch?: string;
    header?: string;
    prefixMatch?: string;
    regexMatch?: string;
    suffixMatch?: string;
}

Properties

exactMatch?: string

Exact value of the header

header?: string

Name of the header

prefixMatch?: string

Prefix value of the header

regexMatch?: string

Regex value of the header

suffixMatch?: string

Suffix value of the header