/** * BIMData API * BIMData API is a tool to interact with your models stored on BIMData’s servers. Through the API, you can manage your projects, the clouds, upload your IFC files and manage them through endpoints. * * The version of the OpenAPI document: v1 (v1) * Contact: support@bimdata.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ClippingPlane } from './ClippingPlane'; import { ComponentsParent } from './ComponentsParent'; import { Line } from './Line'; import { OrthogonalCamera } from './OrthogonalCamera'; import { PerspectiveCamera } from './PerspectiveCamera'; import { Pin } from './Pin'; import { Snapshot } from './Snapshot'; /** * Adds nested create feature * @export * @interface Viewpoint */ export interface Viewpoint { /** * * @type {number} * @memberof Viewpoint */ index?: number | null; /** * * @type {string} * @memberof Viewpoint */ guid?: string; /** * Name of the system in which the viewpoint is originated * @type {string} * @memberof Viewpoint */ originating_system?: string | null; /** * System specific identifier of the viewpoint in the originating BIM tool * @type {string} * @memberof Viewpoint */ authoring_tool_id?: string | null; /** * * @type {OrthogonalCamera} * @memberof Viewpoint */ orthogonal_camera?: OrthogonalCamera | null; /** * * @type {PerspectiveCamera} * @memberof Viewpoint */ perspective_camera?: PerspectiveCamera | null; /** * * @type {Array} * @memberof Viewpoint */ lines?: Array | null; /** * * @type {Array} * @memberof Viewpoint */ clipping_planes?: Array | null; /** * * @type {Snapshot} * @memberof Viewpoint */ snapshot?: Snapshot | null; /** * * @type {ComponentsParent} * @memberof Viewpoint */ components?: ComponentsParent | null; /** * Non standard field. Pins (or markers/annotations) are points of interest. When creating a Viewpoint you can create pins with the fields `pins`, but you can't edit pins through here. You must use dedicated pin routes. * @type {Array} * @memberof Viewpoint */ pins?: Array | null; /** * * @type {Array} * @memberof Viewpoint */ models?: Array; } export declare function ViewpointFromJSON(json: any): Viewpoint; export declare function ViewpointFromJSONTyped(json: any, ignoreDiscriminator: boolean): Viewpoint; export declare function ViewpointToJSON(value?: Viewpoint | null): any;