//
// $Id$
//
import { RestServices, RestResponse } from "../tools/RestServices.js";
import { Context } from "./../infohub/Context.js";
import { ApiResponse } from "../tools/ApiResponse.js";
/**
*
* @category COLNEO gom
*
* @classdesc cnCoordModel on infohub
*
*/
export class cnCoordModel {
static className = "cnCoordModel";
#data;
constructor() {}
}
/**
*
* @category COLNEO gom
*
* @classdesc cnCoordModel on infohub
*
*/
export class cnCoordModelServices {
constructor(ctx) {
this._ctx = ctx;
}
/**
* @param {string} shortid
* @returns {Promise<void>}
*/
async getCoordModelByShortId(shortid) {
return;
}
async get3dModels() {
return;
}
/**
* @param {string} modelid
* @returns {Promise<void>}
*/
async get3dModelById(modelid) {
return;
}
async get3dModelSmartSets(modelid) {
return;
}
async get3dModelColorScheme(modelid) {
return;
}
async get3dModelViewPoints(modelid) {
return;
}
async get3dModelRelations(modelid) {
return;
}
}
Source