@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
19 lines (18 loc) • 690 B
TypeScript
import { type Status } from '../../enums/index.js';
import { Contacts } from './contacts.js';
import { type CustomData, ImportMeta } from '../index.js';
import { type IBusinessResponse } from '../../types/index.js';
export declare class Business {
readonly id: string;
readonly customerId: string;
readonly name: string;
readonly companyNumber: string | null;
readonly taxIdentifier: string | null;
readonly status: Status;
readonly contacts: Contacts[] | null;
readonly createdAt: string;
readonly updatedAt: string;
readonly customData: CustomData | null;
readonly importMeta: ImportMeta | null;
constructor(business: IBusinessResponse);
}