import type * as ElevenLabs from "../index"; /** * One page of the caller's generations, newest first. */ export interface MediaGenerationListResponse { /** The generations on this page, newest first. Each item has the same shape as the corresponding GET endpoint's response. */ generations: ElevenLabs.MediaGenerationResponse[]; /** Pass as `cursor` to fetch the next page. `null` when there is no further page. */ nextCursor?: string; /** Whether more generations exist beyond this page. */ hasMore?: boolean; }