// tslint:disable /** * 3Di API * 3Di simulation API (latest stable version: v3) Framework release: 3.0.1 3Di core release: 2.3.0.dev0 deployed on: 10:42AM (UTC) on October 04, 2022 * * The version of the OpenAPI document: v3 * Contact: info@nelen-schuurmans.nl * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * Point specified in wkt or geojson. Coordinates in longitude, latitude order. * @export * @interface Point */ export interface Point { /** * Type should always be \'Point\' * @type {string} * @memberof Point */ type: string; /** * List of exactly one coordinate (longitude, latitude order) * @type {Array} * @memberof Point */ coordinates: Array; } export function PointFromJSON(json: any): Point { return { 'type': json['type'], 'coordinates': json['coordinates'], }; } export function PointToJSON(value?: Point): any { if (value === undefined) { return undefined; } return { 'type': value.type, 'coordinates': value.coordinates, }; }