aps-data-api
Version:
package for data extraction from APS company for omnimetic project
15 lines (14 loc) • 607 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UtilityUserAccountResponse = void 0;
const utility_service_account_response_1 = require("./utility-service-account-response");
class UtilityUserAccountResponse {
constructor(json) {
if (json) {
this.id = json.id;
this.name = json.name;
this.serviceAccounts = json.serviceAccounts.map((serviceAccount) => new utility_service_account_response_1.UtilityServiceAccountResponse(serviceAccount));
}
}
}
exports.UtilityUserAccountResponse = UtilityUserAccountResponse;