import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PazeConsumer } from "./pazeconsumer.js"; import { PazeMaskedCard } from "./pazemaskedcard.js"; import { PazeSessionReviewLinks } from "./pazesessionreviewlinks.js"; import { PazeShippingAddress } from "./pazeshippingaddress.js"; export type PazeSessionReview = { consumer: PazeConsumer; shippingAddress: PazeShippingAddress | null; maskedCard: PazeMaskedCard; links: PazeSessionReviewLinks; /** * Opaque token issued by the Paze service to be used in the next Paze interaction. */ code: string; }; /** @internal */ export declare const PazeSessionReview$inboundSchema: z.ZodType; export declare function pazeSessionReviewFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pazesessionreview.d.ts.map