/** * 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 { PinWithModels } from './PinWithModels'; /** * * @export * @interface TopicPin */ export interface TopicPin { /** * * @type {string} * @memberof TopicPin */ readonly topic_guid: string; /** * * @type {Array} * @memberof TopicPin */ readonly pins: Array; } export declare function TopicPinFromJSON(json: any): TopicPin; export declare function TopicPinFromJSONTyped(json: any, ignoreDiscriminator: boolean): TopicPin; export declare function TopicPinToJSON(value?: TopicPin | null): any;