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 InvestigationServiceGetInvestigationRequest = { /** * The investigation id. */ investigationId: string; }; export type InvestigationServiceGetInvestigationResponse = { httpMeta: components.HTTPMetadata; /** * OK */ investigation?: components.Investigation | undefined; /** * INVALID_ARGUMENT: The request is not valid, additional information may be present in the BadRequest details. */ status?: components.Status | undefined; }; /** @internal */ export declare const InvestigationServiceGetInvestigationRequest$inboundSchema: z.ZodType; /** @internal */ export type InvestigationServiceGetInvestigationRequest$Outbound = { investigation_id: string; }; /** @internal */ export declare const InvestigationServiceGetInvestigationRequest$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 InvestigationServiceGetInvestigationRequest$ { /** @deprecated use `InvestigationServiceGetInvestigationRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InvestigationServiceGetInvestigationRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InvestigationServiceGetInvestigationRequest$Outbound` instead. */ type Outbound = InvestigationServiceGetInvestigationRequest$Outbound; } export declare function investigationServiceGetInvestigationRequestToJSON(investigationServiceGetInvestigationRequest: InvestigationServiceGetInvestigationRequest): string; export declare function investigationServiceGetInvestigationRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InvestigationServiceGetInvestigationResponse$inboundSchema: z.ZodType; /** @internal */ export type InvestigationServiceGetInvestigationResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; Investigation?: components.Investigation$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const InvestigationServiceGetInvestigationResponse$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 InvestigationServiceGetInvestigationResponse$ { /** @deprecated use `InvestigationServiceGetInvestigationResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InvestigationServiceGetInvestigationResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InvestigationServiceGetInvestigationResponse$Outbound` instead. */ type Outbound = InvestigationServiceGetInvestigationResponse$Outbound; } export declare function investigationServiceGetInvestigationResponseToJSON(investigationServiceGetInvestigationResponse: InvestigationServiceGetInvestigationResponse): string; export declare function investigationServiceGetInvestigationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=investigationservicegetinvestigation.d.ts.map