/** * 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 { AdminLastExchange } from './AdminLastExchange'; /** * * @export * @interface AdminPaginatedLastExchanges */ export interface AdminPaginatedLastExchanges { /** * One entry per matching user, ordered by most recent last message first * @type {Array} * @memberof AdminPaginatedLastExchanges */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof AdminPaginatedLastExchanges */ nextCursor: string | null; } /** * Check if a given object implements the AdminPaginatedLastExchanges interface. */ export declare function instanceOfAdminPaginatedLastExchanges(value: object): value is AdminPaginatedLastExchanges; export declare function AdminPaginatedLastExchangesFromJSON(json: any): AdminPaginatedLastExchanges; export declare function AdminPaginatedLastExchangesFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminPaginatedLastExchanges; export declare function AdminPaginatedLastExchangesToJSON(json: any): AdminPaginatedLastExchanges; export declare function AdminPaginatedLastExchangesToJSONTyped(value?: AdminPaginatedLastExchanges | null, ignoreDiscriminator?: boolean): any;