/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * Contact: developer@icloudhospital.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CoordinateSystem } from './coordinate-system';
/**
 *
 * @export
 * @interface GeographyPoint
 */
export interface GeographyPoint {
    /**
     *
     * @type {CoordinateSystem}
     * @memberof GeographyPoint
     */
    'coordinateSystem'?: CoordinateSystem;
    /**
     *
     * @type {boolean}
     * @memberof GeographyPoint
     */
    'isEmpty'?: boolean;
    /**
     *
     * @type {number}
     * @memberof GeographyPoint
     */
    'latitude'?: number;
    /**
     *
     * @type {number}
     * @memberof GeographyPoint
     */
    'longitude'?: number;
    /**
     *
     * @type {number}
     * @memberof GeographyPoint
     */
    'z'?: number | null;
    /**
     *
     * @type {number}
     * @memberof GeographyPoint
     */
    'm'?: number | null;
}
//# sourceMappingURL=geography-point.d.ts.map