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
| Value | Description | Example |
|---|---|---|
exact | Exact number match | +1234567890 matches only this number |
prefix | Starts with prefix | +1800 matches any toll-free US number |
pattern | Regex pattern | `^+1(800 |
Used By
- InboundBlacklist model