/** * 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 { Message } from './Message'; /** * * @export * @interface PaginatedMessages */ export interface PaginatedMessages { /** * Array of message objects * @type {Array} * @memberof PaginatedMessages */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof PaginatedMessages */ nextCursor: string | null; } /** * Check if a given object implements the PaginatedMessages interface. */ export declare function instanceOfPaginatedMessages(value: object): value is PaginatedMessages; export declare function PaginatedMessagesFromJSON(json: any): PaginatedMessages; export declare function PaginatedMessagesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedMessages; export declare function PaginatedMessagesToJSON(json: any): PaginatedMessages; export declare function PaginatedMessagesToJSONTyped(value?: PaginatedMessages | null, ignoreDiscriminator?: boolean): any;