import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A collection of checkout fields and the conditions under which they are required. */ export type RequiredCheckoutFields = { /** * A list of transaction fields that are required to process a payment for this service. */ requiredFields: Array; /** * The conditions under which these fields are required */ conditions?: { [k: string]: any; } | null | undefined; }; /** @internal */ export declare const RequiredCheckoutFields$inboundSchema: z.ZodType; export declare function requiredCheckoutFieldsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=requiredcheckoutfields.d.ts.map