citeright-sdk-js
Version:
An SDK to connect to the CiteRight API.
23 lines (22 loc) • 839 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var UserDTO = /** @class */ (function () {
function UserDTO(id, email, firstname, lastname, company, role, suspended) {
if (id === void 0) { id = ""; }
if (email === void 0) { email = ""; }
if (firstname === void 0) { firstname = ""; }
if (lastname === void 0) { lastname = ""; }
if (company === void 0) { company = ""; }
if (role === void 0) { role = ""; }
if (suspended === void 0) { suspended = false; }
this.id = id;
this.email = email;
this.firstname = firstname;
this.lastname = lastname;
this.company = company;
this.role = role;
this.suspended = suspended;
}
return UserDTO;
}());
exports.UserDTO = UserDTO;