UNPKG

@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.09 kB
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../../schema'; import { RefundConsolidatedInvoice } from '../refundConsolidatedInvoice'; import { RefundInvoice } from '../refundInvoice'; /** This is a container type for any-of types. */ export type RefundInvoiceRequestRefund = RefundInvoice | RefundConsolidatedInvoice; export declare const refundInvoiceRequestRefundSchema: Schema<RefundInvoiceRequestRefund>; export declare namespace RefundInvoiceRequestRefund { /** * Validation method to narrow down union type to RefundInvoice type case. * * This is Refund Invoice case. */ function isRefundInvoice(value: unknown): value is RefundInvoice; /** * Validation method to narrow down union type to RefundConsolidatedInvoice type case. * * This is Refund Consolidated Invoice case. */ function isRefundConsolidatedInvoice(value: unknown): value is RefundConsolidatedInvoice; } //# sourceMappingURL=refundInvoiceRequestRefund.d.ts.map