export interface ManualVerificationFileResponse {
    /** The ID of the file. */
    fileId: string;
    /** The name of the file. */
    fileName: string;
    /** The MIME type of the file. */
    mimeType: string;
    /** The size of the file in bytes. */
    sizeBytes: number;
    /** The date of the file in Unix time. */
    uploadDateUnix: number;
}
