interface HeadDecisionsParams {
    contains?: boolean;
    ip?: string;
    range?: string;
    scope?: string;
    type?: string;
    value?: string;
}

Properties

contains?: boolean

indicate if you're looking for a decision that contains the value, or that is contained within the value

ip?: string

IP to search for (shorthand for scope=ip&value=)

range?: string

range to search for (shorthand for scope=range&value=)

scope?: string

scope to which the decision applies (ie. IP/Range/Username/Session/...)

type?: string

type of decision

value?: string

the value to match for in the specified scope

Generated using TypeDoc