/** * A completed media generation and its output. */ export interface MediaGenerationCompletedResponse { /** The unique identifier of the generation. */ id: string; /** A signed URL to download the generated media from. It expires about an hour after this response is returned; fetch the generation again for a fresh URL. */ contentUrl: string; /** The MIME type of the generated media. */ contentMimeType: string; }