import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { E2EETokenUpdate, E2EETokenUpdate$Outbound } from "./e2eetokenupdate.js"; import { UpdateCardAddress, UpdateCardAddress$Outbound } from "./updatecardaddress.js"; import { UpdateCardExpiration, UpdateCardExpiration$Outbound } from "./updatecardexpiration.js"; export type UpdateCard = { /** * Wraps a compact-serialized JSON Web Encryption (JWE) token used for secure transmission of sensitive data (e.g., PCI information) through intermediaries. * * @remarks * This token is encrypted using the public key from /end-to-end-keys and wraps an AES key. For details and examples, refer to our * [GitHub repository](https://github.com/moovfinancial/moov-go/blob/main/examples/e2ee/e2ee_test.go). */ e2ee?: E2EETokenUpdate | undefined; billingAddress?: UpdateCardAddress | undefined; expiration?: UpdateCardExpiration | undefined; cardCvv?: string | undefined; cardOnFile?: boolean | undefined; merchantAccountID?: string | undefined; verifyName?: boolean | undefined; holderName?: string | undefined; }; /** @internal */ export declare const UpdateCard$inboundSchema: z.ZodType; /** @internal */ export type UpdateCard$Outbound = { e2ee?: E2EETokenUpdate$Outbound | undefined; billingAddress?: UpdateCardAddress$Outbound | undefined; expiration?: UpdateCardExpiration$Outbound | undefined; cardCvv?: string | undefined; cardOnFile?: boolean | undefined; merchantAccountID?: string | undefined; verifyName?: boolean | undefined; holderName?: string | undefined; }; /** @internal */ export declare const UpdateCard$outboundSchema: z.ZodType; export declare function updateCardToJSON(updateCard: UpdateCard): string; export declare function updateCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatecard.d.ts.map