import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response body for the V3 Disenroll Identity API. */ export type V3DisenrollIdentityResponse = { /** * If true, the disenroll operation was successful. */ success: boolean; }; /** @internal */ export declare const V3DisenrollIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DisenrollIdentityResponse$Outbound = { success: boolean; }; /** @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=v3disenrollidentityresponse.d.ts.map