/** * 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. */ /** * This is a flattened nested representation of FosUser, Invitation, UserCloud and UserProject models in this serializer. * @export * @interface FolderUserProject */ export interface FolderUserProject { /** * * @type {number} * @memberof FolderUserProject */ readonly id: number; /** * * @type {number} * @memberof FolderUserProject */ readonly user_id: number | null; /** * * @type {number} * @memberof FolderUserProject */ readonly invitation_id: number | null; /** * * @type {string} * @memberof FolderUserProject */ readonly email: string; /** * * @type {string} * @memberof FolderUserProject */ readonly firstname: string | null; /** * * @type {string} * @memberof FolderUserProject */ readonly lastname: string | null; /** * * @type {string} * @memberof FolderUserProject */ readonly profile_picture: string | null; /** * * @type {string} * @memberof FolderUserProject */ readonly sub: string | null; /** * * `100` - admin * * `50` - user * * `25` - guest * @type {number} * @memberof FolderUserProject */ readonly role: FolderUserProjectRoleEnum; /** * * `100` - admin * * `50` - user * @type {number} * @memberof FolderUserProject */ readonly cloud_role: FolderUserProjectCloudRoleEnum; /** * * @type {boolean} * @memberof FolderUserProject */ readonly in_all_projects: boolean; /** * * `1` - denied * * `50` - read_only * * `100` - read_write * @type {number} * @memberof FolderUserProject */ readonly permission: FolderUserProjectPermissionEnum; } /** * @export * @enum {string} */ export declare enum FolderUserProjectRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50, NUMBER_25 = 25 } /** * @export * @enum {string} */ export declare enum FolderUserProjectCloudRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50 } /** * @export * @enum {string} */ export declare enum FolderUserProjectPermissionEnum { NUMBER_1 = 1, NUMBER_50 = 50, NUMBER_100 = 100 } export declare function FolderUserProjectFromJSON(json: any): FolderUserProject; export declare function FolderUserProjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): FolderUserProject; export declare function FolderUserProjectToJSON(value?: FolderUserProject | null): any;