import * as z from "zod/v3"; export type AccountUpdaterOptions = { /** * The type of response to simulate. */ responseCode?: "updated" | null | undefined; /** * When the `response_code` is set to `updated`, the payment method's account number will be updated to this value. */ accountNumber?: string | null | undefined; /** * When the `response_code` is set to `updated`, the payment method's expiration month will be updated to this value. */ expirationMonth?: string | null | undefined; /** * When the `response_code` is set to `updated`, the payment method's expiration year will be updated to this value. */ expirationYear?: string | null | undefined; /** * The type of error code to simulate. */ errorCode?: string | null | undefined; }; /** @internal */ export type AccountUpdaterOptions$Outbound = { response_code?: "updated" | null | undefined; account_number?: string | null | undefined; expiration_month?: string | null | undefined; expiration_year?: string | null | undefined; error_code?: string | null | undefined; }; /** @internal */ export declare const AccountUpdaterOptions$outboundSchema: z.ZodType; export declare function accountUpdaterOptionsToJSON(accountUpdaterOptions: AccountUpdaterOptions): string; //# sourceMappingURL=accountupdateroptions.d.ts.map