@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.
31 lines • 1.45 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { CreditType } from './creditType.js';
import { ItemCategory } from './itemCategory.js';
export interface UpdateComponent {
handle?: string;
/** The name of the Component, suitable for display on statements. i.e. Text Messages. */
name?: string;
/** The description of the component. */
description?: string | null;
accountingCode?: string | null;
/** Boolean flag describing whether a component is taxable or not. */
taxable?: boolean;
/** A string representing the tax code related to the component type. This is especially important when using AvaTax to tax based on locale. This attribute has a max length of 25 characters. */
taxCode?: string | null;
/** One of the following: Business Software, Consumer Software, Digital Services, Physical Goods, Other */
itemCategory?: ItemCategory | null;
displayOnHostedPage?: boolean;
/**
* The type of credit to be created when upgrading/downgrading. Defaults to the component and then site setting if one is not provided.
* Available values: `full`, `prorated`, `none`.
*/
upgradeCharge?: CreditType | null;
[key: string]: unknown;
}
export declare const updateComponentSchema: Schema<UpdateComponent>;
//# sourceMappingURL=updateComponent.d.ts.map