Skip to main content

InboundBlacklistMatchType Enum

The InboundBlacklistMatchType enum defines how blacklist entries match incoming phone numbers.

Definition

namespace App\Enums;

enum InboundBlacklistMatchType: string
{
case EXACT = 'exact';
case PREFIX = 'prefix';
case PATTERN = 'pattern';
}

Values

ValueDescriptionExample
exactExact number match+1234567890 matches only this number
prefixStarts with prefix+1800 matches any toll-free US number
patternRegex pattern`^+1(800

Used By