@blockv/sdk
Version:
Allows web apps to display and interact with vatoms.
37 lines (31 loc) • 988 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
//
// BlockV AG. Copyright (c) 2018, all rights reserved.
//
// Licensed under the BlockV SDK License (the "License"); you may not use this file or
// the BlockV SDK except in compliance with the License accompanying it. Unless
// required by applicable law or agreed to in writing, the BlockV SDK distributed under
// the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
// ANY KIND, either express or implied. See the License for the specific language
// governing permissions and limitations under the License.
//
class LoginRequest {
constructor(tokenType, token, password) {
this.token_type = tokenType;
this.token = token;
this.auth_data = {
password
};
}
get tokenType() {
return this.token_type;
}
set tokenType(tokenType) {
this.token_type = tokenType;
}
}
exports.default = LoginRequest;