/** * 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 ProjectAccessToken */ export interface ProjectAccessToken { /** * * @type {string} * @memberof ProjectAccessToken */ readonly token: string; /** * * @type {Array} * @memberof ProjectAccessToken */ scopes: Array; /** * * @type {Date} * @memberof ProjectAccessToken */ expires_at?: Date; /** * * If the request is made from an SSO application, you can link the token to a user. * All calls made with the token will populate created_by fields with the user. * If the user don't have access to some data, the token won't have access. * * @type {string} * @memberof ProjectAccessToken */ email_impersonation?: string | null; } /** * @export * @enum {string} */ export declare enum ProjectAccessTokenScopesEnum { Bcfread = "bcf:read", Bcfwrite = "bcf:write", Documentread = "document:read", Documentwrite = "document:write", Ifcread = "ifc:read", Ifcwrite = "ifc:write", Modelread = "model:read", Modelwrite = "model:write" } export declare function ProjectAccessTokenFromJSON(json: any): ProjectAccessToken; export declare function ProjectAccessTokenFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectAccessToken; export declare function ProjectAccessTokenToJSON(value?: ProjectAccessToken | null): any;