UNPKG

@mia-burton/klarna-node

Version:
17 lines (16 loc) 406 B
"use strict"; 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;