import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request body for the V3 Deactivate Identity API. */ export type V3IdentityDeactivateRequest = { /** * 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; }; /** @internal */ export declare const V3IdentityDeactivateRequest$inboundSchema: z.ZodType; /** @internal */ export type V3IdentityDeactivateRequest$Outbound = { clientRequestId?: string | undefined; }; /** @internal */ export declare const V3IdentityDeactivateRequest$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 V3IdentityDeactivateRequest$ { /** @deprecated use `V3IdentityDeactivateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3IdentityDeactivateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3IdentityDeactivateRequest$Outbound` instead. */ type Outbound = V3IdentityDeactivateRequest$Outbound; } export declare function v3IdentityDeactivateRequestToJSON(v3IdentityDeactivateRequest: V3IdentityDeactivateRequest): string; export declare function v3IdentityDeactivateRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3identitydeactivaterequest.d.ts.map