@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.2 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { IncludeOption } from './includeOption';
/** Warning: When updating a metafield's scope attribute, all scope attributes must be passed. Partially complete scope attributes will override the existing settings. */
export interface MetafieldScope {
/** Include (1) or exclude (0) metafields from the csv export. */
csv?: IncludeOption;
/** Include (1) or exclude (0) metafields from invoices. */
invoices?: IncludeOption;
/** Include (1) or exclude (0) metafields from statements. */
statements?: IncludeOption;
/** Include (1) or exclude (0) metafields from the portal. */
portal?: IncludeOption;
/** Include (1) or exclude (0) metafields from being viewable by your ecosystem. */
publicShow?: IncludeOption;
/** Include (1) or exclude (0) metafields from being edited by your ecosystem. */
publicEdit?: IncludeOption;
hosted?: string[];
[key: string]: unknown;
}
export declare const metafieldScopeSchema: Schema<MetafieldScope>;
//# sourceMappingURL=metafieldScope.d.ts.map