UNPKG

@paritydeals/node-sdk

Version:

Node.js SDK for interacting with the ParityDeals API.

18 lines 603 B
import { ChargePeriod } from '../constants'; import { BaseResponse, FeatureListItem } from './common'; export interface CreateCheckoutSessionPayload { pricingTableId?: string | null; ruleId?: string | null; chargePeriod: ChargePeriod; customerId?: string | null; features?: FeatureListItem[] | null; planIdentifier: string; offeringId?: string | null; successUrl: string; ipAddress?: string | null; } export interface CreateCheckoutSessionResponse extends BaseResponse { checkoutSessionId: string; checkoutUrl: string; } //# sourceMappingURL=checkout.d.ts.map