UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

53 lines 2.34 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SoSPropertyEntityGeocodingDataBounds } from './SoSPropertyEntityGeocodingDataBounds'; import type { SoSPropertyEntityGeocodingDataLocation } from './SoSPropertyEntityGeocodingDataLocation'; /** * * @export * @interface SoSPropertyEntityGeocodingDataGeometry */ export interface SoSPropertyEntityGeocodingDataGeometry { /** * Geographical bounds of the location * @type {SoSPropertyEntityGeocodingDataBounds} * @memberof SoSPropertyEntityGeocodingDataGeometry */ bounds: SoSPropertyEntityGeocodingDataBounds; /** * Precise location coordinates * @type {SoSPropertyEntityGeocodingDataLocation} * @memberof SoSPropertyEntityGeocodingDataGeometry */ location: SoSPropertyEntityGeocodingDataLocation; /** * Recommended viewport for displaying the location * @type {SoSPropertyEntityGeocodingDataBounds} * @memberof SoSPropertyEntityGeocodingDataGeometry */ viewport: SoSPropertyEntityGeocodingDataBounds; /** * Type of location precision (e.g., ROOFTOP, RANGE_INTERPOLATED) * @type {string} * @memberof SoSPropertyEntityGeocodingDataGeometry */ location_type: string; } /** * Check if a given object implements the SoSPropertyEntityGeocodingDataGeometry interface. */ export declare function instanceOfSoSPropertyEntityGeocodingDataGeometry(value: object): value is SoSPropertyEntityGeocodingDataGeometry; export declare function SoSPropertyEntityGeocodingDataGeometryFromJSON(json: any): SoSPropertyEntityGeocodingDataGeometry; export declare function SoSPropertyEntityGeocodingDataGeometryFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityGeocodingDataGeometry; export declare function SoSPropertyEntityGeocodingDataGeometryToJSON(json: any): SoSPropertyEntityGeocodingDataGeometry; export declare function SoSPropertyEntityGeocodingDataGeometryToJSONTyped(value?: SoSPropertyEntityGeocodingDataGeometry | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSPropertyEntityGeocodingDataGeometry.d.ts.map