/** * 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 ProjectInvitation */ export interface ProjectInvitation { /** * * @type {number} * @memberof ProjectInvitation */ readonly id: number; /** * email of the user to invite * @type {string} * @memberof ProjectInvitation */ email: string; /** * User will be redirected to this uri when they accept the invitation * @type {string} * @memberof ProjectInvitation */ redirect_uri: string; /** * * `100` - admin * * `50` - user * * `25` - guest * @type {number} * @memberof ProjectInvitation */ role: ProjectInvitationRoleEnum; } /** * @export * @enum {string} */ export declare enum ProjectInvitationRoleEnum { NUMBER_100 = 100, NUMBER_50 = 50, NUMBER_25 = 25 } export declare function ProjectInvitationFromJSON(json: any): ProjectInvitation; export declare function ProjectInvitationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectInvitation; export declare function ProjectInvitationToJSON(value?: ProjectInvitation | null): any;