UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

45 lines 1.66 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. */ /** * * @export * @interface SoSZipcodeEntityArea */ export interface SoSZipcodeEntityArea { /** * GeoJSON type identifier * @type {string} * @memberof SoSZipcodeEntityArea */ type: string; /** * Array of polygon coordinates for MultiPolygon geometry. Each polygon contains an array of linear rings (first is exterior, others are holes), and each ring contains coordinate pairs [longitude, latitude] * @type {Array<Array<Array<Array<number>>>>} * @memberof SoSZipcodeEntityArea */ coordinates: Array<Array<Array<Array<number>>>>; /** * Optional bounding box * @type {Array<number>} * @memberof SoSZipcodeEntityArea */ bbox?: Array<number>; } /** * Check if a given object implements the SoSZipcodeEntityArea interface. */ export declare function instanceOfSoSZipcodeEntityArea(value: object): value is SoSZipcodeEntityArea; export declare function SoSZipcodeEntityAreaFromJSON(json: any): SoSZipcodeEntityArea; export declare function SoSZipcodeEntityAreaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSZipcodeEntityArea; export declare function SoSZipcodeEntityAreaToJSON(json: any): SoSZipcodeEntityArea; export declare function SoSZipcodeEntityAreaToJSONTyped(value?: SoSZipcodeEntityArea | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSZipcodeEntityArea.d.ts.map