/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ /** * Document represents a file attachment * associated with a message. */ export interface WebitelImApiGatewayV1Document { /** Creation timestamp (Unix time, milliseconds). */ createdAt?: string; /** File storage identifier. */ fileId?: string; /** Document identifier. */ id?: string; /** Identifier of the message this document belongs to. */ messageId?: string; /** MIME type of the document. */ mime?: string; /** Original file name. */ name?: string; /** File size in bytes. */ size?: string; /** Public signed URL for downloading the document. */ url?: string; }