/** * 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. */ /** * * @export * @interface CloudInvitation */ export interface CloudInvitation { /** * * @type {number} * @memberof CloudInvitation */ readonly id: number; /** * email of the user to invite * @type {string} * @memberof CloudInvitation */ email: string; /** * User will be redirected to this uri when they accept the invitation * @type {string} * @memberof CloudInvitation */ redirect_uri: string; /** * * `100` - admin * * `50` - user * @type {number} * @memberof CloudInvitation */ role?: CloudInvitationRoleEnum; /** * * `100` - admin * * `50` - user * * `25` - guest * @type {number} * @memberof CloudInvitation */ project_role?: CloudInvitationProjectRoleEnum; /** * When inviting non-admin cloud user, specify if the user will be invited in all existing projects. project_role needs to be specified. * @type {boolean} * @memberof CloudInvitation */ in_all_projects?: boolean; } /** * @export * @enum {string} */ export declare enum CloudInvitationRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50 } /** * @export * @enum {string} */ export declare enum CloudInvitationProjectRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50, NUMBER_25 = 25 } export declare function CloudInvitationFromJSON(json: any): CloudInvitation; export declare function CloudInvitationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloudInvitation; export declare function CloudInvitationToJSON(value?: CloudInvitation | null): any;