/**
 * 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;
