15 lines
325 B
PHP
Executable File
15 lines
325 B
PHP
Executable File
<?php
|
|
|
|
namespace Resend;
|
|
|
|
/**
|
|
* @property string $id The unique identifier for the domain.
|
|
* @property string $name The domain name.
|
|
* @property string $created_at Time at which the domain was created.
|
|
* @property array $records The list of DNS records to add to your domain.
|
|
*/
|
|
class Domain extends Resource
|
|
{
|
|
//
|
|
}
|