/** * A newly queued media generation; fetch the GET endpoint for the output. */ export interface MediaGenerationCreateResponse { /** The unique identifier of the generation. Pass it to the corresponding GET endpoint to retrieve the output. */ id: string; /** A newly created generation is always `pending`. */ status: "pending"; }