@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
15 lines (14 loc) • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SimulationType = void 0;
class SimulationType {
constructor(simulationTypeResponse) {
this.name = simulationTypeResponse.name;
this.label = simulationTypeResponse.label;
this.description = simulationTypeResponse.description;
this.group = simulationTypeResponse.group;
this.type = simulationTypeResponse.type;
this.events = simulationTypeResponse.events;
}
}
exports.SimulationType = SimulationType;