UNPKG

@paddle/paddle-node-sdk

Version:

A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.

13 lines (12 loc) 310 B
export class EventType { name; description; group; availableVersions; constructor(eventType) { this.name = eventType.name; this.description = eventType.description; this.group = eventType.group; this.availableVersions = eventType.available_versions; } }