/** * 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 { FolderWithoutChildren } from './FolderWithoutChildren'; import { Group } from './Group'; /** * * @export * @interface GroupFolder */ export interface GroupFolder { /** * * @type {FolderWithoutChildren} * @memberof GroupFolder */ readonly folder: FolderWithoutChildren | null; /** * * @type {Group} * @memberof GroupFolder */ readonly group: Group | null; /** * * `1` - denied * * `50` - read_only * * `100` - read_write * @type {number} * @memberof GroupFolder */ permission: GroupFolderPermissionEnum; } /** * @export * @enum {string} */ export declare enum GroupFolderPermissionEnum { NUMBER_1 = 1, NUMBER_50 = 50, NUMBER_100 = 100, NUMBER_null } export declare function GroupFolderFromJSON(json: any): GroupFolder; export declare function GroupFolderFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupFolder; export declare function GroupFolderToJSON(value?: GroupFolder | null): any;