import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AccountUpdaterInquirySummary } from "./accountupdaterinquirysummary.js"; export type AccountUpdaterJob = { /** * Always `account-updater-job` */ type: "account-updater-job"; /** * The ID for the account updater job. */ id: string; /** * The ID of the merchant account this job belongs to. */ merchantAccountId: string; /** * A list of the payment methods that have been scheduled for an update. */ inquiries: Array; /** * The date and time when this payment method was first created in our system. */ createdAt: Date; /** * The date and time when this payment method was last updated in our system. */ updatedAt: Date; }; /** @internal */ export declare const AccountUpdaterJob$inboundSchema: z.ZodType; export declare function accountUpdaterJobFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountupdaterjob.d.ts.map