import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardUpdateReason } from "./cardupdatereason.js"; /** * The results of the most recent card update request. */ export type CardAccountUpdater = { updatedOn?: Date | undefined; /** * The results of the card update request. */ updateType?: CardUpdateReason | undefined; }; /** @internal */ export declare const CardAccountUpdater$inboundSchema: z.ZodType; /** @internal */ export type CardAccountUpdater$Outbound = { updatedOn?: string | undefined; updateType?: string | undefined; }; /** @internal */ export declare const CardAccountUpdater$outboundSchema: z.ZodType; export declare function cardAccountUpdaterToJSON(cardAccountUpdater: CardAccountUpdater): string; export declare function cardAccountUpdaterFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardaccountupdater.d.ts.map