@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) • 705 B
text/typescript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { ApiError } from '../core.js';
/**
* Creates an instance of EventBasedBillingSegmentErrors
*/
interface EventBasedBillingSegmentErrors {
/** The key of the object would be a number (an index in the request array) where the error occurred. In the value object, the key represents the field and the value is an array with error messages. In most cases, this object would contain just one key. */
errors?: Record<string, unknown>;
[]: unknown;
}
export class EventBasedBillingSegmentErrorsError extends ApiError<
EventBasedBillingSegmentErrors
> {}