/** * 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 { Chat } from './Chat'; /** * * @export * @interface PaginatedChats */ export interface PaginatedChats { /** * Array of chat objects * @type {Array} * @memberof PaginatedChats */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof PaginatedChats */ nextCursor: string | null; } /** * Check if a given object implements the PaginatedChats interface. */ export declare function instanceOfPaginatedChats(value: object): value is PaginatedChats; export declare function PaginatedChatsFromJSON(json: any): PaginatedChats; export declare function PaginatedChatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedChats; export declare function PaginatedChatsToJSON(json: any): PaginatedChats; export declare function PaginatedChatsToJSONTyped(value?: PaginatedChats | null, ignoreDiscriminator?: boolean): any;