/** * Token for accessing models, users, or organizations on a ShapeDiver Geometry Backend system. */ export interface SdPlatformResponseModelToken { /** Bearer token */ readonly access_token: string; /** The endpoint of the ShapeDiver Geometry Backend System. Obsolete, will be phased out. */ readonly model_mgmt_url: string; /** The endpoint of the ShapeDiver Geometry Backend System. */ readonly model_view_url: string; /** * Used in case the token was requested for a single model. * The id of the model on the ShapeDiver Geometry Backend system. * This id is not the same as the id of the model on the Platform Backend! */ readonly guid?: string; /** * Used in case the token was requested for multiple models. * The ids of the models on the ShapeDiver Geometry Backend system. * This id is not the same as the id of the model on the Platform Backend! */ readonly guids?: Array; /** * Used when the token was requested for one or more users. * Platform user ids included in the token. */ readonly user_ids?: Array; /** * Used when the token was requested for one or more organizations. * Platform organization ids included in the token. */ readonly org_ids?: Array; /** * Alias of the geometry backend system the token applies to. */ readonly backend_system_alias?: string; } //# sourceMappingURL=SdPlatformResponseModelToken.d.ts.map