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.

17 lines (16 loc) 591 B
import { type Status } from '../../enums/index.js'; import { type CustomData, ImportMeta } from '../index.js'; import { type ICustomerResponse } from '../../types/index.js'; export declare class Customer { readonly id: string; readonly name: string | null; readonly email: string; readonly marketingConsent: boolean; readonly status: Status; readonly customData: CustomData | null; readonly locale: string; readonly createdAt: string; readonly updatedAt: string; readonly importMeta: ImportMeta | null; constructor(customer: ICustomerResponse); }