cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
57 lines (56 loc) • 1.55 kB
TypeScript
/**
* 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 { Pool } from './Pool';
/**
*
* @export
* @interface Pools
*/
export interface Pools {
/**
* The cursor to the next page of data; null if there is no more data
* @type {string}
* @memberof Pools
*/
readonly nextPage?: string;
/**
* The cursor to the current page of data
* @type {string}
* @memberof Pools
*/
readonly page?: string;
/**
* The number of records fetched per-page; this may be larger than the number of records actually retrieved
* @type {number}
* @memberof Pools
*/
readonly pageSize?: number;
/**
* List of retrieved pools
* @type {Array<Pool>}
* @memberof Pools
*/
pools?: Array<Pool>;
/**
* The total number of records retrieved; null or not present if not supported or unknown
* @type {number}
* @memberof Pools
*/
readonly total?: number;
}
/**
* Check if a given object implements the Pools interface.
*/
export declare function instanceOfPools(value: object): boolean;
export declare function PoolsFromJSON(json: any): Pools;
export declare function PoolsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pools;
export declare function PoolsToJSON(value?: Pools | null): any;