@wedevelop/mindbody-client
Version:
A MindBody v6 API Client
25 lines (19 loc) • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class ClientMembership {
constructor(mbClient, membership) {
this._mbClient = mbClient;
this._membership = membership;
}
get id() {
return this._membership.MembershipId;
}
get iconCode() {
return this._membership.IconCode;
}
}
var _default = ClientMembership;
exports.default = _default;