/** * 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 { ObjectiveResource } from './ObjectiveResource'; /** * * @export * @interface PaginatedObjectiveResources */ export interface PaginatedObjectiveResources { /** * Array of objective resources * @type {Array} * @memberof PaginatedObjectiveResources */ data: Array; /** * Opaque cursor for fetching the next page. Null when there are no more results. * @type {string} * @memberof PaginatedObjectiveResources */ nextCursor: string | null; } /** * Check if a given object implements the PaginatedObjectiveResources interface. */ export declare function instanceOfPaginatedObjectiveResources(value: object): value is PaginatedObjectiveResources; export declare function PaginatedObjectiveResourcesFromJSON(json: any): PaginatedObjectiveResources; export declare function PaginatedObjectiveResourcesFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedObjectiveResources; export declare function PaginatedObjectiveResourcesToJSON(json: any): PaginatedObjectiveResources; export declare function PaginatedObjectiveResourcesToJSONTyped(value?: PaginatedObjectiveResources | null, ignoreDiscriminator?: boolean): any;