17 lines
465 B
JavaScript
17 lines
465 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.IdentityData = void 0;
|
|
class IdentityData {
|
|
sub;
|
|
preferred_username;
|
|
email;
|
|
claims;
|
|
constructor(sub, preferred_username, email, claims) {
|
|
this.sub = sub;
|
|
this.preferred_username = preferred_username;
|
|
this.email = email;
|
|
this.claims = claims;
|
|
}
|
|
}
|
|
exports.IdentityData = IdentityData;
|
|
//# sourceMappingURL=identity-data.js.map
|