/** * 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 and UserCloud models in this serializer. * @export * @interface UserCloud */ export interface UserCloud { /** * * @type {number} * @memberof UserCloud */ readonly id: number | null; /** * * @type {string} * @memberof UserCloud */ readonly email: string; /** * * @type {string} * @memberof UserCloud */ readonly firstname: string | null; /** * * @type {string} * @memberof UserCloud */ readonly lastname: string | null; /** * * @type {string} * @memberof UserCloud */ readonly profile_picture: string | null; /** * * @type {string} * @memberof UserCloud */ readonly sub: string | null; /** * * @type {Date} * @memberof UserCloud */ readonly created_at: Date; /** * * @type {Date} * @memberof UserCloud */ readonly updated_at: Date; /** * * @type {string} * @memberof UserCloud */ readonly provider: string; /** * * `100` - admin * * `50` - user * @type {number} * @memberof UserCloud */ readonly cloud_role: UserCloudCloudRoleEnum; /** * * @type {boolean} * @memberof UserCloud */ readonly in_all_projects: boolean; } /** * @export * @enum {string} */ export declare enum UserCloudCloudRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50 } export declare function UserCloudFromJSON(json: any): UserCloud; export declare function UserCloudFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserCloud; export declare function UserCloudToJSON(value?: UserCloud | null): any;