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

import { expandoObject, lazy, Schema } from '../schema.js';
import {
  SignupProformaPreview,
  signupProformaPreviewSchema,
} from './signupProformaPreview.js';

export interface SignupProformaPreviewResponse {
  proformaInvoicePreview: SignupProformaPreview;
  [key: string]: unknown;
}

export const signupProformaPreviewResponseSchema: Schema<SignupProformaPreviewResponse> = lazy(
  () =>
    expandoObject({
      proformaInvoicePreview: [
        'proforma_invoice_preview',
        signupProformaPreviewSchema,
      ],
    })
);
