import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PazeMobileNumber } from "./pazemobilenumber.js"; export type PazeConsumer = { /** * First name of the consumer. */ firstName: string | null; /** * Last name of the consumer. */ lastName: string | null; /** * Full name of the consumer. */ fullName: string; /** * ISO 3166-1 alpha-2 country code. */ countryCode: string | null; /** * ISO 639-1 language code associated with the wallet. */ languageCode: string | null; /** * Email address of the consumer. */ emailAddress: string; mobileNumber: PazeMobileNumber | null; }; /** @internal */ export declare const PazeConsumer$inboundSchema: z.ZodType; export declare function pazeConsumerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazeconsumer.d.ts.map