@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.
24 lines (23 loc) • 802 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../../schema';
/** This is a container type for one-of types. */
export type QuantityBasedComponentUnitPrice = string | number;
export declare const quantityBasedComponentUnitPriceSchema: Schema<QuantityBasedComponentUnitPrice>;
export declare namespace QuantityBasedComponentUnitPrice {
/**
* Validation method to narrow down union type to string type case.
*
* This is String case.
*/
function isString(value: unknown): value is string;
/**
* Validation method to narrow down union type to number type case.
*
* This is Precision case.
*/
function isNumber(value: unknown): value is number;
}