import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateAccountUpdaterJobGlobals = { merchantAccountId?: string | undefined; }; export type CreateAccountUpdaterJobRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; accountUpdaterJobCreate: components.AccountUpdaterJobCreate; }; /** @internal */ export type CreateAccountUpdaterJobRequest$Outbound = { merchantAccountId?: string | null | undefined; AccountUpdaterJobCreate: components.AccountUpdaterJobCreate$Outbound; }; /** @internal */ export declare const CreateAccountUpdaterJobRequest$outboundSchema: z.ZodType; export declare function createAccountUpdaterJobRequestToJSON(createAccountUpdaterJobRequest: CreateAccountUpdaterJobRequest): string; //# sourceMappingURL=createaccountupdaterjob.d.ts.map