/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */

import { ApiError } from '../core';

/**
 * Creates an instance of SingleErrorResponse
 */
interface SingleErrorResponse {
  error: string;
  [key: string]: unknown;
}

export class SingleErrorResponseError extends ApiError<SingleErrorResponse> {}
