/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Resend Segment object - parent containing broadcasts that target this segment */ export interface ResendSegment { /** Segment ID (read-only, set by Resend) */ id?: string; /** Segment name */ name: string; /** Creation timestamp */ created_at?: string; /** Broadcasts sent to this segment */ broadcasts?: Klavis.ResendBroadcast[]; }