UNPKG

@itwin/reality-data-client

Version:

HTTP Client for the iTwin Platform Reality Management APIs

18 lines 822 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** * Contains information on a project that is associated to a RealityData. More details about a project can be requested from the Projects API. */ export class Project { /** Project identifier */ id; /** Project URL in the Projects API, for more information about the project */ projectDetailsLink; constructor(project) { this.id = project.id; this.projectDetailsLink = project._links.self.href; } } //# sourceMappingURL=Projects.js.map