import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response body for the V3 Deactivate Identity API. */ export type V3DeactivateIdentityResponse = { /** * If true, the deactivate operation was successful. */ success: boolean; }; /** @internal */ export declare const V3DeactivateIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DeactivateIdentityResponse$Outbound = { success: boolean; }; /** @internal */ export declare const V3DeactivateIdentityResponse$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 V3DeactivateIdentityResponse$ { /** @deprecated use `V3DeactivateIdentityResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DeactivateIdentityResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DeactivateIdentityResponse$Outbound` instead. */ type Outbound = V3DeactivateIdentityResponse$Outbound; } export declare function v3DeactivateIdentityResponseToJSON(v3DeactivateIdentityResponse: V3DeactivateIdentityResponse): string; export declare function v3DeactivateIdentityResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3deactivateidentityresponse.d.ts.map