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"; export type WebhookDataCardAutoUpdated = { cardID: string; accountID: string; /** * The results of the card update request. */ updateType: CardUpdateReason; }; /** @internal */ export declare const WebhookDataCardAutoUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataCardAutoUpdated$Outbound = { cardID: string; accountID: string; updateType: string; }; /** @internal */ export declare const WebhookDataCardAutoUpdated$outboundSchema: z.ZodType; export declare function webhookDataCardAutoUpdatedToJSON(webhookDataCardAutoUpdated: WebhookDataCardAutoUpdated): string; export declare function webhookDataCardAutoUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatacardautoupdated.d.ts.map