UNPKG

@maxio-com/advanced-billing-sdk

Version:

Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.

19 lines 941 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { CollectionMethod } from './collectionMethod.js'; import { SubscriptionGroupPaymentProfile } from './subscriptionGroupPaymentProfile.js'; export interface SubscriptionGroup { customerId?: number; paymentProfile?: SubscriptionGroupPaymentProfile; /** The type of payment collection to be used in the subscription. For legacy Statements Architecture valid options are - `invoice`, `automatic`. For current Relationship Invoicing Architecture valid options are - `remittance`, `automatic`, `prepaid`. */ paymentCollectionMethod?: CollectionMethod; subscriptionIds?: number[]; createdAt?: string; [key: string]: unknown; } export declare const subscriptionGroupSchema: Schema<SubscriptionGroup>; //# sourceMappingURL=subscriptionGroup.d.ts.map