/** * 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 { User } from './User'; /** * * @export * @interface UserInvitation */ export interface UserInvitation { /** * * @type {number} * @memberof UserInvitation */ readonly id: number; /** * User will be redirected to this uri when they accept the invitation * @type {string} * @memberof UserInvitation */ redirect_uri: string; /** * * @type {number} * @memberof UserInvitation */ readonly cloud_id: number; /** * * @type {string} * @memberof UserInvitation */ cloud_name: string; /** * * @type {number} * @memberof UserInvitation */ readonly project_id: number | null; /** * * @type {string} * @memberof UserInvitation */ project_name?: string; /** * * A: Accepted * D: Denied * P: Pending * * * * `A` - accepted * * `D` - denied * * `P` - pending * @type {string} * @memberof UserInvitation */ status?: UserInvitationStatusEnum; /** * * @type {string} * @memberof UserInvitation */ client_name: string; /** * * @type {User} * @memberof UserInvitation */ sender: User; /** * * @type {Date} * @memberof UserInvitation */ readonly created_at: Date; /** * * @type {Date} * @memberof UserInvitation */ responded_at?: Date | null; } /** * @export * @enum {string} */ export declare enum UserInvitationStatusEnum { A = "A", D = "D", P = "P" } export declare function UserInvitationFromJSON(json: any): UserInvitation; export declare function UserInvitationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserInvitation; export declare function UserInvitationToJSON(value?: UserInvitation | null): any;