cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
38 lines (37 loc) • 911 B
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.
*/
/**
* A representation of a state
* @export
* @interface State
*/
export interface State {
/**
*
* @type {string}
* @memberof State
*/
stateInitial: string;
/**
*
* @type {string}
* @memberof State
*/
name: string;
}
/**
* Check if a given object implements the State interface.
*/
export declare function instanceOfState(value: object): boolean;
export declare function StateFromJSON(json: any): State;
export declare function StateFromJSONTyped(json: any, ignoreDiscriminator: boolean): State;
export declare function StateToJSON(value?: State | null): any;