/**
 * 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 Location
 */
export interface Location {
    /**
     * Owning office of object.
     * @type {string}
     * @memberof Location
     */
    officeId: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    name: string;
    /**
     *
     * @type {number}
     * @memberof Location
     */
    latitude?: number;
    /**
     *
     * @type {number}
     * @memberof Location
     */
    longitude?: number;
    /**
     *
     * @type {boolean}
     * @memberof Location
     */
    active?: boolean;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    publicName?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    longName?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    description?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    timezoneName?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    locationType?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    locationKind?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    nation?: LocationNationEnum;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    stateInitial?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    countyName?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    nearestCity?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    horizontalDatum?: string;
    /**
     *
     * @type {number}
     * @memberof Location
     */
    publishedLongitude?: number;
    /**
     *
     * @type {number}
     * @memberof Location
     */
    publishedLatitude?: number;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    verticalDatum?: string;
    /**
     *
     * @type {number}
     * @memberof Location
     */
    elevation?: number;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    mapLabel?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    boundingOfficeId?: string;
    /**
     *
     * @type {string}
     * @memberof Location
     */
    elevationUnits?: string;
}
/**
 * @export
 */
export declare const LocationNationEnum: {
    readonly Us: "US";
    readonly Canada: "CANADA";
    readonly Mexico: "MEXICO";
};
export type LocationNationEnum = typeof LocationNationEnum[keyof typeof LocationNationEnum];
/**
 * Check if a given object implements the Location interface.
 */
export declare function instanceOfLocation(value: object): boolean;
export declare function LocationFromJSON(json: any): Location;
export declare function LocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Location;
export declare function LocationToJSON(value?: Location | null): any;
