import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AccountUpdaterInquirySummary = { /** * Always `account-updater-inquiry` */ type: "account-updater-inquiry"; /** * The ID for the account updater inquiry. */ id: string; /** * The ID of the payment method */ paymentMethodId: string; }; /** @internal */ export declare const AccountUpdaterInquirySummary$inboundSchema: z.ZodType; export declare function accountUpdaterInquirySummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountupdaterinquirysummary.d.ts.map