import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthFinishResponseCardError = { /** * Code is an internal error code that describes the problem category of the request. */ code?: number | undefined; /** * Message is an error message describing the problem with the request. */ message: string; /** * PUID is the unique ID associated with an AirKey card that was extracted from the AirKey message. */ puid?: string | undefined; }; /** @internal */ export declare const AuthFinishResponseCardError$inboundSchema: z.ZodType; /** @internal */ export type AuthFinishResponseCardError$Outbound = { code?: number | undefined; message: string; puid?: string | undefined; }; /** @internal */ export declare const AuthFinishResponseCardError$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AuthFinishResponseCardError$ { /** @deprecated use `AuthFinishResponseCardError$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseCardError$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseCardError$Outbound` instead. */ type Outbound = AuthFinishResponseCardError$Outbound; } export declare function authFinishResponseCardErrorToJSON(authFinishResponseCardError: AuthFinishResponseCardError): string; export declare function authFinishResponseCardErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authfinishresponsecarderror.d.ts.map