@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.38 kB
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { IncludeOption } from './includeOption.js';
/** 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 used in [Embeddable Components](page:development-tools/embeddable-components/overview) from being viewable by your ecosystem. */
publicShow?: IncludeOption;
/** Include (1) or exclude (0) metafields used in [Embeddable Components](page:development-tools/embeddable-components/overview) from being editable by your ecosystem. */
publicEdit?: IncludeOption;
hosted?: string[];
[key: string]: unknown;
}
export declare const metafieldScopeSchema: Schema<MetafieldScope>;
//# sourceMappingURL=metafieldScope.d.ts.map