wa-chat-server
Version:
Watson Assistant powered chat server
18 lines (17 loc) • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserMock = void 0;
class UserMock {
constructor() {
this.givenName = 'Biff';
this.surname = 'Biffus';
this.mail = 'biff@mail.com';
this.displayName = 'Biff Biffus';
this.accessToken = 'at';
this.refreshToken = 'rt';
}
toPlainObj() {
return Object.assign({}, this);
}
}
exports.UserMock = UserMock;