module-hub-aurum-core-connector
Version:
Module to connect to the Aurum Core
13 lines (11 loc) • 386 B
JavaScript
//Response class, access_token, refresh_token, scope, token_type, expires_in
class Response {
constructor(access_token, refresh_token, scope, token_type, expires_in) {
this.access_token = access_token;
this.refresh_token = refresh_token;
this.scope = scope;
this.token_type = token_type;
this.expires_in = expires_in;
}
}
module.exports = Response;