UNPKG

cwmsjs

Version:

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

48 lines (47 loc) 1.11 kB
/** * CWMS Data API * CWMS REST API for Data Retrieval * * The version of the OpenAPI document: 2.4.0-2026.3.16 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CdaError */ export interface CdaError { /** * * @type {string} * @memberof CdaError */ message?: string; /** * A randomly generated UUID to help identify your request in the logs for analysis.. * @type {string} * @memberof CdaError */ incidentIdentifier?: string; /** * * @type {string} * @memberof CdaError */ source?: string; /** * * @type {{ [key: string]: object; }} * @memberof CdaError */ details?: { [key: string]: object; }; } export declare function CdaErrorFromJSON(json: any): CdaError; export declare function CdaErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): CdaError; export declare function CdaErrorToJSON(value?: CdaError | null): any;