UNPKG

cwmsjs

Version:

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

52 lines (51 loc) 1.03 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 Blob */ export interface Blob { /** * Owning office of object. * @type {string} * @memberof Blob */ officeId: string; /** * * @type {string} * @memberof Blob */ id: string; /** * * @type {string} * @memberof Blob */ description?: string; /** * * @type {string} * @memberof Blob */ mediaTypeId?: string; /** * * @type {string} * @memberof Blob */ value: string; } export declare function BlobFromJSON(json: any): Blob; export declare function BlobFromJSONTyped(json: any, ignoreDiscriminator: boolean): Blob; export declare function BlobToJSON(value?: Blob | null): any;