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.

64 lines (60 loc) 2.4 kB
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { expandoObject, lazy, optional, Schema } from '../schema'; import { SubscriptionGroupSignupComponentAllocatedQuantity, subscriptionGroupSignupComponentAllocatedQuantitySchema, } from './containers/subscriptionGroupSignupComponentAllocatedQuantity'; import { SubscriptionGroupSignupComponentComponentId, subscriptionGroupSignupComponentComponentIdSchema, } from './containers/subscriptionGroupSignupComponentComponentId'; import { SubscriptionGroupSignupComponentPricePointId, subscriptionGroupSignupComponentPricePointIdSchema, } from './containers/subscriptionGroupSignupComponentPricePointId'; import { SubscriptionGroupSignupComponentUnitBalance, subscriptionGroupSignupComponentUnitBalanceSchema, } from './containers/subscriptionGroupSignupComponentUnitBalance'; import { SubscriptionGroupComponentCustomPrice, subscriptionGroupComponentCustomPriceSchema, } from './subscriptionGroupComponentCustomPrice'; export interface SubscriptionGroupSignupComponent { /** Required if passing any component to `components` attribute. */ componentId?: SubscriptionGroupSignupComponentComponentId; allocatedQuantity?: SubscriptionGroupSignupComponentAllocatedQuantity; unitBalance?: SubscriptionGroupSignupComponentUnitBalance; pricePointId?: SubscriptionGroupSignupComponentPricePointId; /** Used in place of `price_point_id` to define a custom price point unique to the subscription. You still need to provide `component_id`. */ customPrice?: SubscriptionGroupComponentCustomPrice; [key: string]: unknown; } export const subscriptionGroupSignupComponentSchema: Schema<SubscriptionGroupSignupComponent> = expandoObject( { componentId: [ 'component_id', optional(subscriptionGroupSignupComponentComponentIdSchema), ], allocatedQuantity: [ 'allocated_quantity', optional(subscriptionGroupSignupComponentAllocatedQuantitySchema), ], unitBalance: [ 'unit_balance', optional(subscriptionGroupSignupComponentUnitBalanceSchema), ], pricePointId: [ 'price_point_id', optional(subscriptionGroupSignupComponentPricePointIdSchema), ], customPrice: [ 'custom_price', optional(lazy(() => subscriptionGroupComponentCustomPriceSchema)), ], } );