/** * 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 { MarketplaceAppImage } from './MarketplaceAppImage'; import { PublicOrganization } from './PublicOrganization'; /** * * @export * @interface MarketplaceAppLight */ export interface MarketplaceAppLight { /** * * @type {number} * @memberof MarketplaceAppLight */ readonly id: number; /** * * @type {string} * @memberof MarketplaceAppLight */ name: string; /** * * @type {Array} * @memberof MarketplaceAppLight */ viewer_plugins_urls?: Array | null; /** * * @type {string} * @memberof MarketplaceAppLight */ file?: string | null; /** * * @type {PublicOrganization} * @memberof MarketplaceAppLight */ readonly organization: PublicOrganization | null; /** * * @type {Array} * @memberof MarketplaceAppLight */ readonly images: Array; } export declare function MarketplaceAppLightFromJSON(json: any): MarketplaceAppLight; export declare function MarketplaceAppLightFromJSONTyped(json: any, ignoreDiscriminator: boolean): MarketplaceAppLight; export declare function MarketplaceAppLightToJSON(value?: MarketplaceAppLight | null): any;