@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.
23 lines • 1.56 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { SubscriptionGroupSignupComponentAllocatedQuantity } from './containers/subscriptionGroupSignupComponentAllocatedQuantity.js';
import { SubscriptionGroupSignupComponentComponentId } from './containers/subscriptionGroupSignupComponentComponentId.js';
import { SubscriptionGroupSignupComponentPricePointId } from './containers/subscriptionGroupSignupComponentPricePointId.js';
import { SubscriptionGroupSignupComponentUnitBalance } from './containers/subscriptionGroupSignupComponentUnitBalance.js';
import { SubscriptionGroupComponentCustomPrice } from './subscriptionGroupComponentCustomPrice.js';
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 declare const subscriptionGroupSignupComponentSchema: Schema<SubscriptionGroupSignupComponent>;
//# sourceMappingURL=subscriptionGroupSignupComponent.d.ts.map