@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) • 449 B
TypeScript
import { type IDiscountGroupResponse } from '../../types/index.js';
import { Status } from '../../enums/index.js';
import { ImportMeta } from '../index.js';
export declare class DiscountGroup {
readonly id: string;
readonly name: string;
readonly status: Status;
readonly createdAt: string;
readonly updatedAt: string;
readonly importMeta: ImportMeta | null;
constructor(discountGroupResponse: IDiscountGroupResponse);
}