17 lines
467 B
PHP
Executable File
17 lines
467 B
PHP
Executable File
<?php
|
|
|
|
namespace Resend;
|
|
|
|
/**
|
|
* @property string $id The unique identifier for the contact.
|
|
* @property string $email The email for the contact.
|
|
* @property null|string $first_name The first name of the contact.
|
|
* @property null|string $last_name The last name of the contact.
|
|
* @property bool $unsubscribed Whether the contact is unsubscribed.
|
|
* @property string $created_at Time at which the contact was created.
|
|
*/
|
|
class Contact extends Resource
|
|
{
|
|
//
|
|
}
|