import { ApplicationAttachmentId } from './idTypesV2'; export interface ApplicationAttachment { /** Unique ID of the attachment. */ id: ApplicationAttachmentId; /** Name of the file. */ name: string; /** MIME type of the file. */ contentType: string; /** Size of the file (in bytes). */ size: number; /** Identifier of the file in the body, if inline. */ inlineCid: string | undefined; } export interface ApplicationDraftAttachment extends Omit { /** * Unique ID of the attachment. * This may be undefined if the draft has not been saved yet. */ id: ApplicationAttachmentId | undefined; }