Files
domain-watchdog/src/Config/DomainRole.php

22 lines
503 B
PHP
Raw Normal View History

2024-07-11 13:15:04 +02:00
<?php
namespace App\Config;
/**
* @see https://www.iana.org/assignments/rdap-json-values/rdap-json-values.xhtml
*/
2024-07-11 13:15:04 +02:00
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';
}