/** * This file was auto-generated by Fern from our API Definition. */ /** * Resend Contact object - standalone, independent of segments */ export interface ResendContact { /** Contact ID (read-only, set by Resend) */ id?: string; /** The email address of the contact. */ email: string; /** Contact first name */ first_name?: string; /** Contact last name */ last_name?: string; /** Whether contact is unsubscribed from all Broadcasts */ unsubscribed?: boolean; /** Creation timestamp */ created_at?: string; }