UNPKG

cwmsjs

Version:

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

29 lines (28 loc) 792 B
/** * 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. */ import { OfficesFMT } from './OfficesFMT'; /** * * @export * @interface OfficeFormatV1 */ export interface OfficeFormatV1 { /** * * @type {OfficesFMT} * @memberof OfficeFormatV1 */ offices?: OfficesFMT; } export declare function OfficeFormatV1FromJSON(json: any): OfficeFormatV1; export declare function OfficeFormatV1FromJSONTyped(json: any, ignoreDiscriminator: boolean): OfficeFormatV1; export declare function OfficeFormatV1ToJSON(value?: OfficeFormatV1 | null): any;