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.

25 lines (24 loc) 818 B
/** * AdvancedBilling * * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../../schema'; import { SnapDay } from '../snapDay'; /** This is a container type for one-of types. */ export type UpdateSubscriptionSnapDay = SnapDay | number; export declare const updateSubscriptionSnapDaySchema: Schema<UpdateSubscriptionSnapDay>; export declare namespace UpdateSubscriptionSnapDay { /** * Validation method to narrow down union type to SnapDay type case. * * This is SnapDay case. */ function isSnapDay(value: unknown): value is SnapDay; /** * Validation method to narrow down union type to number type case. * * This is Number case. */ function isNumber(value: unknown): value is number; }