import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest = { webhookId: string; organizationId?: string | undefined; workspaceId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; }; export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents: { readonly TriggerEventUnspecified: "TRIGGER_EVENT_UNSPECIFIED"; readonly TriggerEventJobStarted: "TRIGGER_EVENT_JOB_STARTED"; readonly TriggerEventJobCompleted: "TRIGGER_EVENT_JOB_COMPLETED"; readonly TriggerEventJobFailed: "TRIGGER_EVENT_JOB_FAILED"; readonly TriggerEventLeadFound: "TRIGGER_EVENT_LEAD_FOUND"; readonly TriggerEventQuotaExceeded: "TRIGGER_EVENT_QUOTA_EXCEEDED"; readonly TriggerEventErrorThresholdReached: "TRIGGER_EVENT_ERROR_THRESHOLD_REACHED"; readonly TriggerEventRateLimitReached: "TRIGGER_EVENT_RATE_LIMIT_REACHED"; readonly TriggerEventDataValidationFailed: "TRIGGER_EVENT_DATA_VALIDATION_FAILED"; readonly TriggerEventNewProxyNeeded: "TRIGGER_EVENT_NEW_PROXY_NEEDED"; readonly TriggerEventScheduledMaintenance: "TRIGGER_EVENT_SCHEDULED_MAINTENANCE"; }; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents = ClosedEnum; export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields: { readonly IncludedFieldUnspecified: "INCLUDED_FIELD_UNSPECIFIED"; readonly IncludedFieldName: "INCLUDED_FIELD_NAME"; readonly IncludedFieldWebsite: "INCLUDED_FIELD_WEBSITE"; readonly IncludedFieldPhone: "INCLUDED_FIELD_PHONE"; readonly IncludedFieldAddress: "INCLUDED_FIELD_ADDRESS"; readonly IncludedFieldLocation: "INCLUDED_FIELD_LOCATION"; readonly IncludedFieldCoordinates: "INCLUDED_FIELD_COORDINATES"; readonly IncludedFieldGoogleRating: "INCLUDED_FIELD_GOOGLE_RATING"; readonly IncludedFieldReviewCount: "INCLUDED_FIELD_REVIEW_COUNT"; readonly IncludedFieldReviews: "INCLUDED_FIELD_REVIEWS"; readonly IncludedFieldBusinessHours: "INCLUDED_FIELD_BUSINESS_HOURS"; readonly IncludedFieldBusinessStatus: "INCLUDED_FIELD_BUSINESS_STATUS"; readonly IncludedFieldPlaceId: "INCLUDED_FIELD_PLACE_ID"; readonly IncludedFieldGoogleMapsUrl: "INCLUDED_FIELD_GOOGLE_MAPS_URL"; readonly IncludedFieldPhotos: "INCLUDED_FIELD_PHOTOS"; readonly IncludedFieldMainPhoto: "INCLUDED_FIELD_MAIN_PHOTO"; readonly IncludedFieldBusinessTypes: "INCLUDED_FIELD_BUSINESS_TYPES"; readonly IncludedFieldAmenities: "INCLUDED_FIELD_AMENITIES"; readonly IncludedFieldPaymentMethods: "INCLUDED_FIELD_PAYMENT_METHODS"; readonly IncludedFieldSocialProfiles: "INCLUDED_FIELD_SOCIAL_PROFILES"; readonly IncludedFieldEmployeeCount: "INCLUDED_FIELD_EMPLOYEE_COUNT"; readonly IncludedFieldRevenueInfo: "INCLUDED_FIELD_REVENUE_INFO"; readonly IncludedFieldFoundedYear: "INCLUDED_FIELD_FOUNDED_YEAR"; readonly IncludedFieldCertifications: "INCLUDED_FIELD_CERTIFICATIONS"; readonly IncludedFieldNaicsCode: "INCLUDED_FIELD_NAICS_CODE"; readonly IncludedFieldSicCode: "INCLUDED_FIELD_SIC_CODE"; readonly IncludedFieldScrapingMetadata: "INCLUDED_FIELD_SCRAPING_METADATA"; readonly IncludedFieldComplianceInfo: "INCLUDED_FIELD_COMPLIANCE_INFO"; readonly IncludedFieldAlternatePhones: "INCLUDED_FIELD_ALTERNATE_PHONES"; readonly IncludedFieldContactPerson: "INCLUDED_FIELD_CONTACT_PERSON"; readonly IncludedFieldContactEmail: "INCLUDED_FIELD_CONTACT_EMAIL"; }; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields = ClosedEnum; export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat: { readonly PayloadFormatUnspecified: "PAYLOAD_FORMAT_UNSPECIFIED"; readonly PayloadFormatJson: "PAYLOAD_FORMAT_JSON"; readonly PayloadFormatXml: "PAYLOAD_FORMAT_XML"; readonly PayloadFormatFormData: "PAYLOAD_FORMAT_FORM_DATA"; readonly PayloadFormatProtobuf: "PAYLOAD_FORMAT_PROTOBUF"; readonly PayloadFormatYaml: "PAYLOAD_FORMAT_YAML"; }; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat = ClosedEnum; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata = {}; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook = { id?: string | undefined; url?: string | undefined; authType?: string | undefined; authToken?: string | undefined; customHeaders?: { [k: string]: string; } | undefined; maxRetries?: number | undefined; retryInterval?: string | undefined; triggerEvents?: Array | undefined; includedFields?: Array | undefined; includeFullResults?: boolean | undefined; payloadFormat?: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat | undefined; verifySsl?: boolean | undefined; signingSecret?: string | undefined; rateLimit?: number | undefined; rateLimitInterval?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; lastTriggeredAt?: Date | undefined; successfulCalls?: number | undefined; failedCalls?: number | undefined; metadata?: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata | undefined; webhookName?: string | undefined; }; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData = { webhook?: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook | undefined; }; /** * Retrieves details of a specific webhook configuration */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody = { data: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$Outbound = { webhookId: string; organizationId?: string | undefined; workspaceId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$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 GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequestToJSON(getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequest): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly TriggerEventUnspecified: "TRIGGER_EVENT_UNSPECIFIED"; readonly TriggerEventJobStarted: "TRIGGER_EVENT_JOB_STARTED"; readonly TriggerEventJobCompleted: "TRIGGER_EVENT_JOB_COMPLETED"; readonly TriggerEventJobFailed: "TRIGGER_EVENT_JOB_FAILED"; readonly TriggerEventLeadFound: "TRIGGER_EVENT_LEAD_FOUND"; readonly TriggerEventQuotaExceeded: "TRIGGER_EVENT_QUOTA_EXCEEDED"; readonly TriggerEventErrorThresholdReached: "TRIGGER_EVENT_ERROR_THRESHOLD_REACHED"; readonly TriggerEventRateLimitReached: "TRIGGER_EVENT_RATE_LIMIT_REACHED"; readonly TriggerEventDataValidationFailed: "TRIGGER_EVENT_DATA_VALIDATION_FAILED"; readonly TriggerEventNewProxyNeeded: "TRIGGER_EVENT_NEW_PROXY_NEEDED"; readonly TriggerEventScheduledMaintenance: "TRIGGER_EVENT_SCHEDULED_MAINTENANCE"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdTriggerEvents$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly TriggerEventUnspecified: "TRIGGER_EVENT_UNSPECIFIED"; readonly TriggerEventJobStarted: "TRIGGER_EVENT_JOB_STARTED"; readonly TriggerEventJobCompleted: "TRIGGER_EVENT_JOB_COMPLETED"; readonly TriggerEventJobFailed: "TRIGGER_EVENT_JOB_FAILED"; readonly TriggerEventLeadFound: "TRIGGER_EVENT_LEAD_FOUND"; readonly TriggerEventQuotaExceeded: "TRIGGER_EVENT_QUOTA_EXCEEDED"; readonly TriggerEventErrorThresholdReached: "TRIGGER_EVENT_ERROR_THRESHOLD_REACHED"; readonly TriggerEventRateLimitReached: "TRIGGER_EVENT_RATE_LIMIT_REACHED"; readonly TriggerEventDataValidationFailed: "TRIGGER_EVENT_DATA_VALIDATION_FAILED"; readonly TriggerEventNewProxyNeeded: "TRIGGER_EVENT_NEW_PROXY_NEEDED"; readonly TriggerEventScheduledMaintenance: "TRIGGER_EVENT_SCHEDULED_MAINTENANCE"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly IncludedFieldUnspecified: "INCLUDED_FIELD_UNSPECIFIED"; readonly IncludedFieldName: "INCLUDED_FIELD_NAME"; readonly IncludedFieldWebsite: "INCLUDED_FIELD_WEBSITE"; readonly IncludedFieldPhone: "INCLUDED_FIELD_PHONE"; readonly IncludedFieldAddress: "INCLUDED_FIELD_ADDRESS"; readonly IncludedFieldLocation: "INCLUDED_FIELD_LOCATION"; readonly IncludedFieldCoordinates: "INCLUDED_FIELD_COORDINATES"; readonly IncludedFieldGoogleRating: "INCLUDED_FIELD_GOOGLE_RATING"; readonly IncludedFieldReviewCount: "INCLUDED_FIELD_REVIEW_COUNT"; readonly IncludedFieldReviews: "INCLUDED_FIELD_REVIEWS"; readonly IncludedFieldBusinessHours: "INCLUDED_FIELD_BUSINESS_HOURS"; readonly IncludedFieldBusinessStatus: "INCLUDED_FIELD_BUSINESS_STATUS"; readonly IncludedFieldPlaceId: "INCLUDED_FIELD_PLACE_ID"; readonly IncludedFieldGoogleMapsUrl: "INCLUDED_FIELD_GOOGLE_MAPS_URL"; readonly IncludedFieldPhotos: "INCLUDED_FIELD_PHOTOS"; readonly IncludedFieldMainPhoto: "INCLUDED_FIELD_MAIN_PHOTO"; readonly IncludedFieldBusinessTypes: "INCLUDED_FIELD_BUSINESS_TYPES"; readonly IncludedFieldAmenities: "INCLUDED_FIELD_AMENITIES"; readonly IncludedFieldPaymentMethods: "INCLUDED_FIELD_PAYMENT_METHODS"; readonly IncludedFieldSocialProfiles: "INCLUDED_FIELD_SOCIAL_PROFILES"; readonly IncludedFieldEmployeeCount: "INCLUDED_FIELD_EMPLOYEE_COUNT"; readonly IncludedFieldRevenueInfo: "INCLUDED_FIELD_REVENUE_INFO"; readonly IncludedFieldFoundedYear: "INCLUDED_FIELD_FOUNDED_YEAR"; readonly IncludedFieldCertifications: "INCLUDED_FIELD_CERTIFICATIONS"; readonly IncludedFieldNaicsCode: "INCLUDED_FIELD_NAICS_CODE"; readonly IncludedFieldSicCode: "INCLUDED_FIELD_SIC_CODE"; readonly IncludedFieldScrapingMetadata: "INCLUDED_FIELD_SCRAPING_METADATA"; readonly IncludedFieldComplianceInfo: "INCLUDED_FIELD_COMPLIANCE_INFO"; readonly IncludedFieldAlternatePhones: "INCLUDED_FIELD_ALTERNATE_PHONES"; readonly IncludedFieldContactPerson: "INCLUDED_FIELD_CONTACT_PERSON"; readonly IncludedFieldContactEmail: "INCLUDED_FIELD_CONTACT_EMAIL"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdIncludedFields$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly IncludedFieldUnspecified: "INCLUDED_FIELD_UNSPECIFIED"; readonly IncludedFieldName: "INCLUDED_FIELD_NAME"; readonly IncludedFieldWebsite: "INCLUDED_FIELD_WEBSITE"; readonly IncludedFieldPhone: "INCLUDED_FIELD_PHONE"; readonly IncludedFieldAddress: "INCLUDED_FIELD_ADDRESS"; readonly IncludedFieldLocation: "INCLUDED_FIELD_LOCATION"; readonly IncludedFieldCoordinates: "INCLUDED_FIELD_COORDINATES"; readonly IncludedFieldGoogleRating: "INCLUDED_FIELD_GOOGLE_RATING"; readonly IncludedFieldReviewCount: "INCLUDED_FIELD_REVIEW_COUNT"; readonly IncludedFieldReviews: "INCLUDED_FIELD_REVIEWS"; readonly IncludedFieldBusinessHours: "INCLUDED_FIELD_BUSINESS_HOURS"; readonly IncludedFieldBusinessStatus: "INCLUDED_FIELD_BUSINESS_STATUS"; readonly IncludedFieldPlaceId: "INCLUDED_FIELD_PLACE_ID"; readonly IncludedFieldGoogleMapsUrl: "INCLUDED_FIELD_GOOGLE_MAPS_URL"; readonly IncludedFieldPhotos: "INCLUDED_FIELD_PHOTOS"; readonly IncludedFieldMainPhoto: "INCLUDED_FIELD_MAIN_PHOTO"; readonly IncludedFieldBusinessTypes: "INCLUDED_FIELD_BUSINESS_TYPES"; readonly IncludedFieldAmenities: "INCLUDED_FIELD_AMENITIES"; readonly IncludedFieldPaymentMethods: "INCLUDED_FIELD_PAYMENT_METHODS"; readonly IncludedFieldSocialProfiles: "INCLUDED_FIELD_SOCIAL_PROFILES"; readonly IncludedFieldEmployeeCount: "INCLUDED_FIELD_EMPLOYEE_COUNT"; readonly IncludedFieldRevenueInfo: "INCLUDED_FIELD_REVENUE_INFO"; readonly IncludedFieldFoundedYear: "INCLUDED_FIELD_FOUNDED_YEAR"; readonly IncludedFieldCertifications: "INCLUDED_FIELD_CERTIFICATIONS"; readonly IncludedFieldNaicsCode: "INCLUDED_FIELD_NAICS_CODE"; readonly IncludedFieldSicCode: "INCLUDED_FIELD_SIC_CODE"; readonly IncludedFieldScrapingMetadata: "INCLUDED_FIELD_SCRAPING_METADATA"; readonly IncludedFieldComplianceInfo: "INCLUDED_FIELD_COMPLIANCE_INFO"; readonly IncludedFieldAlternatePhones: "INCLUDED_FIELD_ALTERNATE_PHONES"; readonly IncludedFieldContactPerson: "INCLUDED_FIELD_CONTACT_PERSON"; readonly IncludedFieldContactEmail: "INCLUDED_FIELD_CONTACT_EMAIL"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly PayloadFormatUnspecified: "PAYLOAD_FORMAT_UNSPECIFIED"; readonly PayloadFormatJson: "PAYLOAD_FORMAT_JSON"; readonly PayloadFormatXml: "PAYLOAD_FORMAT_XML"; readonly PayloadFormatFormData: "PAYLOAD_FORMAT_FORM_DATA"; readonly PayloadFormatProtobuf: "PAYLOAD_FORMAT_PROTOBUF"; readonly PayloadFormatYaml: "PAYLOAD_FORMAT_YAML"; }>; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdPayloadFormat$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly PayloadFormatUnspecified: "PAYLOAD_FORMAT_UNSPECIFIED"; readonly PayloadFormatJson: "PAYLOAD_FORMAT_JSON"; readonly PayloadFormatXml: "PAYLOAD_FORMAT_XML"; readonly PayloadFormatFormData: "PAYLOAD_FORMAT_FORM_DATA"; readonly PayloadFormatProtobuf: "PAYLOAD_FORMAT_PROTOBUF"; readonly PayloadFormatYaml: "PAYLOAD_FORMAT_YAML"; }>; } /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$Outbound = {}; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$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 GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadataToJSON(getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$Outbound = { id?: string | undefined; url?: string | undefined; authType?: string | undefined; authToken?: string | undefined; customHeaders?: { [k: string]: string; } | undefined; maxRetries?: number | undefined; retryInterval?: string | undefined; triggerEvents?: Array | undefined; includedFields?: Array | undefined; includeFullResults?: boolean | undefined; payloadFormat: string; verifySsl?: boolean | undefined; signingSecret?: string | undefined; rateLimit?: number | undefined; rateLimitInterval?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; lastTriggeredAt?: string | undefined; successfulCalls?: number | undefined; failedCalls?: number | undefined; metadata?: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdMetadata$Outbound | undefined; webhookName?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$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 GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhookToJSON(getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhookFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$Outbound = { webhook?: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdWebhook$Outbound | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$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 GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdDataToJSON(getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$Outbound = { data: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdData$Outbound; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$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 GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBodyToJSON(getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody: GetApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBody): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhookIdResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapileadscrapermicroserviceapiv1webhookswebhookid.d.ts.map