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.

17 lines (16 loc) 756 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CouponPayload } from './couponPayload'; export interface CouponRequest { coupon?: CouponPayload; /** An object where the keys are product_ids and the values are booleans indicating if the coupon should be applicable to the product */ restrictedProducts?: Record<string, boolean>; /** An object where the keys are component_ids and the values are booleans indicating if the coupon should be applicable to the component */ restrictedComponents?: Record<string, boolean>; [key: string]: unknown; } export declare const couponRequestSchema: Schema<CouponRequest>;