@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.js';
import { CreateComponentPricePoint } from '../createComponentPricePoint.js';
import { CreatePrepaidUsageComponentPricePoint } from '../createPrepaidUsageComponentPricePoint.js';
/** This is a container type for any-of types. */
export type CreateComponentPricePointRequestPricePoint = CreateComponentPricePoint | CreatePrepaidUsageComponentPricePoint;
export declare const createComponentPricePointRequestPricePointSchema: Schema<CreateComponentPricePointRequestPricePoint>;
export declare namespace CreateComponentPricePointRequestPricePoint {
/**
* 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=createComponentPricePointRequestPricePoint.d.ts.map