cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
56 lines (55 loc) • 1.16 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.
*/
/**
*
* @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;
}
/**
* Check if a given object implements the Blob interface.
*/
export declare function instanceOfBlob(value: object): boolean;
export declare function BlobFromJSON(json: any): Blob;
export declare function BlobFromJSONTyped(json: any, ignoreDiscriminator: boolean): Blob;
export declare function BlobToJSON(value?: Blob | null): any;