UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

64 lines 2.54 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 { SoSPropertyEntityAttomAllEventDetailDataGeoIdV4 } from './SoSPropertyEntityAttomAllEventDetailDataGeoIdV4'; /** * * @export * @interface SoSPropertyEntityAttomAllEventDetailDataLocation */ export interface SoSPropertyEntityAttomAllEventDetailDataLocation { /** * Geographic identifier * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataLocation */ geoid: string; /** * Geographic ID version 4 * @type {SoSPropertyEntityAttomAllEventDetailDataGeoIdV4} * @memberof SoSPropertyEntityAttomAllEventDetailDataLocation */ geoIdV4: SoSPropertyEntityAttomAllEventDetailDataGeoIdV4; /** * Location accuracy * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataLocation */ accuracy: string; /** * Distance measurement * @type {number} * @memberof SoSPropertyEntityAttomAllEventDetailDataLocation */ distance: number; /** * Latitude coordinate * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataLocation */ latitude: string; /** * Longitude coordinate * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataLocation */ longitude: string; } /** * Check if a given object implements the SoSPropertyEntityAttomAllEventDetailDataLocation interface. */ export declare function instanceOfSoSPropertyEntityAttomAllEventDetailDataLocation(value: object): value is SoSPropertyEntityAttomAllEventDetailDataLocation; export declare function SoSPropertyEntityAttomAllEventDetailDataLocationFromJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataLocation; export declare function SoSPropertyEntityAttomAllEventDetailDataLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityAttomAllEventDetailDataLocation; export declare function SoSPropertyEntityAttomAllEventDetailDataLocationToJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataLocation; export declare function SoSPropertyEntityAttomAllEventDetailDataLocationToJSONTyped(value?: SoSPropertyEntityAttomAllEventDetailDataLocation | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSPropertyEntityAttomAllEventDetailDataLocation.d.ts.map