@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.
34 lines (30 loc) • 1.29 kB
text/typescript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { array, expandoObject, lazy, optional, Schema } from '../schema';
import {
ComponentCustomPrice,
componentCustomPriceSchema,
} from './componentCustomPrice';
import { Price, priceSchema } from './price';
import { PricingScheme, pricingSchemeSchema } from './pricingScheme';
/** Used in place of `price_point_id` to define a custom price point unique to the subscription. You still need to provide `component_id`. */
export interface SubscriptionGroupComponentCustomPrice {
/** The identifier for the pricing scheme. See [Product Components](https://help.chargify.com/products/product-components.html) for an overview of pricing schemes. */
pricingScheme?: PricingScheme;
prices?: Price[];
overagePricing?: ComponentCustomPrice[];
[key: string]: unknown;
}
export const subscriptionGroupComponentCustomPriceSchema: Schema<SubscriptionGroupComponentCustomPrice> = expandoObject(
{
pricingScheme: ['pricing_scheme', optional(pricingSchemeSchema)],
prices: ['prices', optional(array(lazy(() => priceSchema)))],
overagePricing: [
'overage_pricing',
optional(array(lazy(() => componentCustomPriceSchema))),
],
}
);