@aecworks/bimbox-bimserver-sdk-js
Version:
AECWorks BIMBox 产品线 BIMServer 的 sdk 的 JavaScript 实现,采用Typescript语言
25 lines • 1.07 kB
JavaScript
import { AccountEmailInscribe, AccountProfileModel } from '../model/account';
var AccountProfileProxy = /** @class */ (function () {
function AccountProfileProxy(responseData) {
this.accountProfileModel = new AccountProfileModel();
var data = responseData.data || responseData;
Object.assign(this.accountProfileModel, data);
}
AccountProfileProxy.prototype.getModel = function () {
return this.accountProfileModel;
};
return AccountProfileProxy;
}());
var AccountEmailInscribeProxy = /** @class */ (function () {
function AccountEmailInscribeProxy(responseData) {
this.emailInscribe = new AccountEmailInscribe();
var data = responseData.data || responseData;
Object.assign(this.emailInscribe, data);
}
AccountEmailInscribeProxy.prototype.getModel = function () {
return this.emailInscribe;
};
return AccountEmailInscribeProxy;
}());
export { AccountProfileProxy, AccountEmailInscribeProxy };
//# sourceMappingURL=account-profile-proxy.js.map