mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
22 lines
503 B
PHP
22 lines
503 B
PHP
<?php
|
|
|
|
namespace App\Config;
|
|
|
|
/**
|
|
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
|
|
*/
|
|
enum DomainRole: string
|
|
{
|
|
case Registrant = 'registrant';
|
|
case Technical = 'technical';
|
|
case Administrative = 'administrative';
|
|
case Abuse = 'abuse';
|
|
case Billing = 'billing';
|
|
case Registrar = 'registrar';
|
|
case Reseller = 'reseller';
|
|
case Sponsor = 'sponsor';
|
|
case Proxy = 'proxy';
|
|
case Notifications = 'notifications';
|
|
case Noc = 'noc';
|
|
}
|