import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3UnifyStatusRequest = { /** * A client-generated unique ID for a specific session. This can be used to identify specific requests. * * @remarks * The format of this ID is defined by the client - Prove recommends using a GUID, but any format can be accepted. * Do not include Personally Identifiable Information (PII) in this field. */ clientRequestId?: string | undefined; /** * The unique ID that Prove generates for the flow. It is returned * * @remarks * from the v3/unify endpoint and cannot be reused outside of a single flow. */ correlationId: string; }; /** @internal */ export declare const V3UnifyStatusRequest$inboundSchema: z.ZodType; /** @internal */ export type V3UnifyStatusRequest$Outbound = { clientRequestId?: string | undefined; correlationId: string; }; /** @internal */ export declare const V3UnifyStatusRequest$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 V3UnifyStatusRequest$ { /** @deprecated use `V3UnifyStatusRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3UnifyStatusRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3UnifyStatusRequest$Outbound` instead. */ type Outbound = V3UnifyStatusRequest$Outbound; } export declare function v3UnifyStatusRequestToJSON(v3UnifyStatusRequest: V3UnifyStatusRequest): string; export declare function v3UnifyStatusRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3unifystatusrequest.d.ts.map