import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { MoovError } from "./mooverror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type UpdateUnderwritingErrorError = { averageMonthlyTransactionVolume?: string | undefined; averageTransactionSize?: string | undefined; maxTransactionSize?: string | undefined; volumeByCustomerType?: components.VolumeByCustomerTypeError | undefined; cardVolumeDistribution?: components.CardVolumeDistributionError | undefined; fulfillment?: components.FulfillmentDetailsError | undefined; }; export type UpdateUnderwritingErrorData = { error: UpdateUnderwritingErrorError; }; export declare class UpdateUnderwritingError extends MoovError { error: UpdateUnderwritingErrorError; /** The original data that was passed to this error instance. */ data$: UpdateUnderwritingErrorData; constructor(err: UpdateUnderwritingErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const UpdateUnderwritingErrorError$inboundSchema: z.ZodType; /** @internal */ export type UpdateUnderwritingErrorError$Outbound = { averageMonthlyTransactionVolume?: string | undefined; averageTransactionSize?: string | undefined; maxTransactionSize?: string | undefined; volumeByCustomerType?: components.VolumeByCustomerTypeError$Outbound | undefined; cardVolumeDistribution?: components.CardVolumeDistributionError$Outbound | undefined; fulfillment?: components.FulfillmentDetailsError$Outbound | undefined; }; /** @internal */ export declare const UpdateUnderwritingErrorError$outboundSchema: z.ZodType; export declare function updateUnderwritingErrorErrorToJSON(updateUnderwritingErrorError: UpdateUnderwritingErrorError): string; export declare function updateUnderwritingErrorErrorFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UpdateUnderwritingError$inboundSchema: z.ZodType; /** @internal */ export type UpdateUnderwritingError$Outbound = { error: UpdateUnderwritingErrorError$Outbound; }; /** @internal */ export declare const UpdateUnderwritingError$outboundSchema: z.ZodType; //# sourceMappingURL=updateunderwritingerror.d.ts.map