/** * This file was auto-generated by Fern from our API Definition. */ /** * Resend Broadcast object - child of Segment, requires parent segment */ export interface ResendBroadcast { /** Broadcast ID (read-only, set by Resend) */ id?: string; /** Sender email with optional display name */ from: string; /** Email subject */ subject: string; /** Broadcast name for internal reference */ name?: string; /** HTML content */ html?: string; /** Plain text content */ text?: string; /** Reply-to email address */ reply_to?: string; /** Broadcast status (draft, sent, etc.) */ status?: string; /** Creation timestamp */ created_at?: string; /** Scheduled send timestamp */ scheduled_at?: string; /** Actual send timestamp */ sent_at?: string; /** Topic ID for scoping */ topic_id?: string; }