import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthenticationResults, AuthenticationResults$Outbound } from "./authenticationresults.js"; export type V3UnifyStatusResponse = { authenticationResults?: AuthenticationResults | undefined; /** * A client-generated unique ID to identify a specific customer across business lines. * * @remarks * Required if success=true. */ clientHumanId?: string | undefined; /** * 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 identifier for the Prove Key on the device. * * @remarks * Required if success=true. */ deviceId?: string | undefined; /** * The evaluation result for the policy. This will contain keys titled "authentication" and "risk" that encompass the different evaluation categories. */ evaluation?: { [k: string]: any; } | undefined; /** * The number of the mobile phone used during the process. * * @remarks * * Required except when MobileAuth is used in US or a valid ProveID is provided. */ phoneNumber?: string | undefined; /** * A unique ID to identify a specific customer obtained from a successful possession check. * * @remarks * If an existing value is available (e.g. from a previous successful possession check) then it should be returned, otherwise a new value should be generated if success=true. * Required if success=true. */ proveId?: string | undefined; /** * The result of the possession check. * * @remarks * Possible values are `true`, `false`, `pending`, and `possession_required`. */ success: string; }; /** @internal */ export declare const V3UnifyStatusResponse$inboundSchema: z.ZodType; /** @internal */ export type V3UnifyStatusResponse$Outbound = { authenticationResults?: AuthenticationResults$Outbound | undefined; clientHumanId?: string | undefined; clientRequestId?: string | undefined; deviceId?: string | undefined; evaluation?: { [k: string]: any; } | undefined; phoneNumber?: string | undefined; proveId?: string | undefined; success: string; }; /** @internal */ export declare const V3UnifyStatusResponse$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 V3UnifyStatusResponse$ { /** @deprecated use `V3UnifyStatusResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3UnifyStatusResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3UnifyStatusResponse$Outbound` instead. */ type Outbound = V3UnifyStatusResponse$Outbound; } export declare function v3UnifyStatusResponseToJSON(v3UnifyStatusResponse: V3UnifyStatusResponse): string; export declare function v3UnifyStatusResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3unifystatusresponse.d.ts.map