UNPKG

@mia-burton/klarna-node

Version:
15 lines (14 loc) 316 B
export class SessionResponse { public readonly clientToken: string public readonly id: string /** * Order token object * * @param id string - The session id * @param token string - The client token */ constructor(id: string, token: string) { this.clientToken = token this.id = id } }