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.

20 lines 834 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Required when creating a subscription with Maxio Payments. */ export interface AgreementAcceptance { /** Required when providing agreement acceptance params. */ ipAddress?: string; /** Required when creating a subscription with Maxio Payments. Either terms_url or provacy_policy_url required when providing agreement_acceptance params. */ termsUrl?: string; privacyPolicyUrl?: string; returnRefundPolicyUrl?: string; deliveryPolicyUrl?: string; secureCheckoutPolicyUrl?: string; [key: string]: unknown; } export declare const agreementAcceptanceSchema: Schema<AgreementAcceptance>; //# sourceMappingURL=agreementAcceptance.d.ts.map