@itwin/reality-data-client
Version:
HTTP Client for the iTwin Platform Reality Management APIs
22 lines • 945 B
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Project = void 0;
/**
* Contains information on a project that is associated to a RealityData. More details about a project can be requested from the Projects API.
*/
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;
}
}
exports.Project = Project;
//# sourceMappingURL=Projects.js.map