import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardVolumeDistribution, CardVolumeDistribution$Outbound } from "./cardvolumedistribution.js"; import { FulfillmentDetails, FulfillmentDetails$Outbound } from "./fulfillmentdetails.js"; import { VolumeByCustomerType, VolumeByCustomerType$Outbound } from "./volumebycustomertype.js"; export type UpdateUnderwriting = { averageTransactionSize: number; maxTransactionSize: number; averageMonthlyTransactionVolume: number; volumeByCustomerType: VolumeByCustomerType; cardVolumeDistribution: CardVolumeDistribution; fulfillment: FulfillmentDetails; }; /** @internal */ export declare const UpdateUnderwriting$inboundSchema: z.ZodType; /** @internal */ export type UpdateUnderwriting$Outbound = { averageTransactionSize: number; maxTransactionSize: number; averageMonthlyTransactionVolume: number; volumeByCustomerType: VolumeByCustomerType$Outbound; cardVolumeDistribution: CardVolumeDistribution$Outbound; fulfillment: FulfillmentDetails$Outbound; }; /** @internal */ export declare const UpdateUnderwriting$outboundSchema: z.ZodType; export declare function updateUnderwritingToJSON(updateUnderwriting: UpdateUnderwriting): string; export declare function updateUnderwritingFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateunderwriting.d.ts.map