/** * 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 { AdminChat } from './AdminChat'; /** * * @export * @interface AdminPaginatedChats */ export interface AdminPaginatedChats { /** * * @type {Array} * @memberof AdminPaginatedChats */ data: Array; /** * * @type {string} * @memberof AdminPaginatedChats */ nextCursor: string | null; } /** * Check if a given object implements the AdminPaginatedChats interface. */ export declare function instanceOfAdminPaginatedChats(value: object): value is AdminPaginatedChats; export declare function AdminPaginatedChatsFromJSON(json: any): AdminPaginatedChats; export declare function AdminPaginatedChatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminPaginatedChats; export declare function AdminPaginatedChatsToJSON(json: any): AdminPaginatedChats; export declare function AdminPaginatedChatsToJSONTyped(value?: AdminPaginatedChats | null, ignoreDiscriminator?: boolean): any;