@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.
21 lines (17 loc) • 623 B
text/typescript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { expandoObject, lazy, optional, Schema } from '../schema.js';
import { BaseStringError, baseStringErrorSchema } from './baseStringError.js';
export interface ProformaError {
/** The error is base if it is not directly associated with a single attribute. */
subscription?: BaseStringError;
[key: string]: unknown;
}
export const proformaErrorSchema: Schema<ProformaError> = lazy(() =>
expandoObject({
subscription: ['subscription', optional(baseStringErrorSchema)],
})
);