Type Alias LinkPropRowEstRangeV2

A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

type LinkPropRowEstRangeV2 = {
    context: LinkUsageContextV2;
    highBound: number;
    lowBound?: number;
}
Index

An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

highBound: number

The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

lowBound?: number

The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.