import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest = { jobId: string; userId: string; orgId: string; tenantId: string; }; export type GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData = { content?: string | undefined; filename?: string | undefined; contentType?: string | undefined; }; /** * This endpoint downloads the results of a Google Maps scraping job as CSV */ export type GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody = { data: GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$Outbound = { jobId: string; userId: string; orgId: string; tenantId: string; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$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 GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequestToJSON(getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest: GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequest): string; export declare function getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$Outbound = { content?: string | undefined; filename?: string | undefined; contentType?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$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 GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadDataToJSON(getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData: GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData): string; export declare function getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$Outbound = { data: GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadData$Outbound; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$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 GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBodyToJSON(getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody: GetApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBody): string; export declare function getApiLeadScraperMicroserviceApiV1JobsJobIdDownloadResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapileadscrapermicroserviceapiv1jobsjobiddownload.d.ts.map