import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3DisenrollIdentityRequest = { /** * A Prove-generated unique ID for a specific identity. */ proveId: string; /** * A client-generated unique ID for a specific session. This can be used to identify specific requests. 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; }; export type V3DisenrollIdentityResponse = { httpMeta: components.HTTPMetadata; /** * V3DisenrollIdentityResponse */ v3DisenrollIdentityResponse?: components.V3DisenrollIdentityResponse | undefined; }; /** @internal */ export declare const V3DisenrollIdentityRequest$inboundSchema: z.ZodType; /** @internal */ export type V3DisenrollIdentityRequest$Outbound = { proveId: string; clientRequestId?: string | undefined; }; /** @internal */ export declare const V3DisenrollIdentityRequest$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 V3DisenrollIdentityRequest$ { /** @deprecated use `V3DisenrollIdentityRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DisenrollIdentityRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DisenrollIdentityRequest$Outbound` instead. */ type Outbound = V3DisenrollIdentityRequest$Outbound; } export declare function v3DisenrollIdentityRequestToJSON(v3DisenrollIdentityRequest: V3DisenrollIdentityRequest): string; export declare function v3DisenrollIdentityRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const V3DisenrollIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DisenrollIdentityResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3DisenrollIdentityResponse?: components.V3DisenrollIdentityResponse$Outbound | undefined; }; /** @internal */ export declare const V3DisenrollIdentityResponse$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 V3DisenrollIdentityResponse$ { /** @deprecated use `V3DisenrollIdentityResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DisenrollIdentityResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DisenrollIdentityResponse$Outbound` instead. */ type Outbound = V3DisenrollIdentityResponse$Outbound; } export declare function v3DisenrollIdentityResponseToJSON(v3DisenrollIdentityResponse: V3DisenrollIdentityResponse): string; export declare function v3DisenrollIdentityResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3disenrollidentity.d.ts.map