export interface AdditionalFormatResponseModel {
    /** The requested format. */
    requestedFormat: string;
    /** The file extension of the additional format. */
    fileExtension: string;
    /** The content type of the additional format. */
    contentType: string;
    /** Whether the content is base64 encoded. */
    isBase64Encoded: boolean;
    /** The content of the additional format. */
    content: string;
}
