UNPKG

cwmsjs

Version:

CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps

57 lines (56 loc) 1.77 kB
/** * CWMS Data API * CWMS REST API for Data Retrieval * * The version of the OpenAPI document: 2.3.2-2025.03.19 * * * 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 { RatingMetadata } from './RatingMetadata'; /** * * @export * @interface RatingMetadataList */ export interface RatingMetadataList { /** * The cursor to the next page of data; null if there is no more data * @type {string} * @memberof RatingMetadataList */ readonly nextPage?: string; /** * The cursor to the current page of data * @type {string} * @memberof RatingMetadataList */ readonly page?: string; /** * The number of records fetched per-page; this may be larger than the number of records actually retrieved * @type {number} * @memberof RatingMetadataList */ readonly pageSize?: number; /** * * @type {Array<RatingMetadata>} * @memberof RatingMetadataList */ ratingMetadata?: Array<RatingMetadata>; /** * The total number of records retrieved; null or not present if not supported or unknown * @type {number} * @memberof RatingMetadataList */ readonly total?: number; } /** * Check if a given object implements the RatingMetadataList interface. */ export declare function instanceOfRatingMetadataList(value: object): boolean; export declare function RatingMetadataListFromJSON(json: any): RatingMetadataList; export declare function RatingMetadataListFromJSONTyped(json: any, ignoreDiscriminator: boolean): RatingMetadataList; export declare function RatingMetadataListToJSON(value?: RatingMetadataList | null): any;