@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
45 lines • 1.49 kB
TypeScript
/**
* 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 SoSZipcodeEntityCenter
*/
export interface SoSZipcodeEntityCenter {
/**
* GeoJSON type identifier
* @type {string}
* @memberof SoSZipcodeEntityCenter
*/
type: string;
/**
* Center point coordinates [longitude, latitude]
* @type {Array<number>}
* @memberof SoSZipcodeEntityCenter
*/
coordinates: Array<number>;
/**
* Optional bounding box
* @type {Array<number>}
* @memberof SoSZipcodeEntityCenter
*/
bbox?: Array<number>;
}
/**
* Check if a given object implements the SoSZipcodeEntityCenter interface.
*/
export declare function instanceOfSoSZipcodeEntityCenter(value: object): value is SoSZipcodeEntityCenter;
export declare function SoSZipcodeEntityCenterFromJSON(json: any): SoSZipcodeEntityCenter;
export declare function SoSZipcodeEntityCenterFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSZipcodeEntityCenter;
export declare function SoSZipcodeEntityCenterToJSON(json: any): SoSZipcodeEntityCenter;
export declare function SoSZipcodeEntityCenterToJSONTyped(value?: SoSZipcodeEntityCenter | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSZipcodeEntityCenter.d.ts.map