@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.
26 lines • 1.35 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../../schema';
import { CreateComponentPricePoint } from '../createComponentPricePoint';
import { CreatePrepaidUsageComponentPricePoint } from '../createPrepaidUsageComponentPricePoint';
/** This is a container type for any-of types. */
export type CreateComponentPricePointsRequestPricePoints = CreateComponentPricePoint | CreatePrepaidUsageComponentPricePoint;
export declare const createComponentPricePointsRequestPricePointsSchema: Schema<CreateComponentPricePointsRequestPricePoints>;
export declare namespace CreateComponentPricePointsRequestPricePoints {
/**
* Validation method to narrow down union type to CreateComponentPricePoint type case.
*
* This is Create Component Price Point case.
*/
function isCreateComponentPricePoint(value: unknown): value is CreateComponentPricePoint;
/**
* Validation method to narrow down union type to CreatePrepaidUsageComponentPricePoint type case.
*
* This is Create Prepaid Usage Component Price Point case.
*/
function isCreatePrepaidUsageComponentPricePoint(value: unknown): value is CreatePrepaidUsageComponentPricePoint;
}
//# sourceMappingURL=createComponentPricePointsRequestPricePoints.d.ts.map