import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Lead, Lead$Outbound } from "./lead.js"; /** * Lead */ export type GetLeadResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: Lead; }; /** @internal */ export declare const GetLeadResponse$inboundSchema: z.ZodType; /** @internal */ export type GetLeadResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Lead$Outbound; }; /** @internal */ export declare const GetLeadResponse$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 GetLeadResponse$ { /** @deprecated use `GetLeadResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetLeadResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetLeadResponse$Outbound` instead. */ type Outbound = GetLeadResponse$Outbound; } export declare function getLeadResponseToJSON(getLeadResponse: GetLeadResponse): string; export declare function getLeadResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getleadresponse.d.ts.map