# Available DNS Types

You have to define all available DNS types for the given integrations. Those are displayed in the storefront for the customer to select from.

### Example Code

```php
public array $availableTypes = [
		"A" => "A",
		"AAAA" => "AAAA",
		"CNAME" => "CNAME",
		"MX" => "MX",
		"DKIM" => "DKIM",
		"SPF" => "SPF",
		"DMARC" => "DMARC",
		"TXT" => "TXT",
		"CAA" => "CAA",
		"SRV" => "SRV",
		"SVCB" => "SVCB",
		"HTTPS" => "HTTPS",
		"PTR" => "PTR",
		"NS" => "NS",
	];
```
