@mia-burton/klarna-node
Version:
A Node.js module for Klarna
15 lines (14 loc) • 316 B
text/typescript
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
}
}