/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { UploadUrlRequestFilesInner } from './UploadUrlRequestFilesInner'; /** * * @export * @interface UploadUrlRequest */ export interface UploadUrlRequest { /** * ID of the chat to associate the files with * @type {string} * @memberof UploadUrlRequest */ chatId: string; /** * * @type {Array} * @memberof UploadUrlRequest */ files: Array; } /** * Check if a given object implements the UploadUrlRequest interface. */ export declare function instanceOfUploadUrlRequest(value: object): value is UploadUrlRequest; export declare function UploadUrlRequestFromJSON(json: any): UploadUrlRequest; export declare function UploadUrlRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UploadUrlRequest; export declare function UploadUrlRequestToJSON(json: any): UploadUrlRequest; export declare function UploadUrlRequestToJSONTyped(value?: UploadUrlRequest | null, ignoreDiscriminator?: boolean): any;