@mia-burton/klarna-node
Version:
A Node.js module for Klarna
17 lines (16 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SessionResponse = void 0;
class SessionResponse {
/**
* Order token object
*
* @param id string - The session id
* @param token string - The client token
*/
constructor(id, token) {
this.clientToken = token;
this.id = id;
}
}
exports.SessionResponse = SessionResponse;