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 GetApiLeadScraperMicroserviceApiV1WebhooksRequest = { organizationId?: string | undefined; workspaceId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; pageSize?: number | undefined; pageNumber?: number | undefined; status?: string | undefined; search?: string | undefined; }; export declare const GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents: { 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 GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents = ClosedEnum; export declare const GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields: { 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 GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields = ClosedEnum; export declare const GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat: { 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 GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat = ClosedEnum; export type GetApiLeadScraperMicroserviceApiV1WebhooksMetadata = {}; export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks = { 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?: GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat | 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?: GetApiLeadScraperMicroserviceApiV1WebhooksMetadata | undefined; webhookName?: string | undefined; }; export type GetApiLeadScraperMicroserviceApiV1WebhooksData = { webhooks?: Array | undefined; nextPageNumber?: number | undefined; totalCount?: number | undefined; }; /** * Lists all webhook configurations with pagination */ export type GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody = { data: GetApiLeadScraperMicroserviceApiV1WebhooksData; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksRequest$Outbound = { organizationId?: string | undefined; workspaceId?: string | undefined; tenantId?: string | undefined; accountId?: string | undefined; pageSize?: number | undefined; pageNumber?: number | undefined; status?: string | undefined; search?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksRequest$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 GetApiLeadScraperMicroserviceApiV1WebhooksRequest$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksRequest$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksRequest$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksRequestToJSON(getApiLeadScraperMicroserviceApiV1WebhooksRequest: GetApiLeadScraperMicroserviceApiV1WebhooksRequest): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents$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 GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents$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 `GetApiLeadScraperMicroserviceApiV1WebhooksTriggerEvents$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 GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields$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 GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields$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 `GetApiLeadScraperMicroserviceApiV1WebhooksIncludedFields$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 GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat$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 GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat$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 `GetApiLeadScraperMicroserviceApiV1WebhooksPayloadFormat$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 GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$Outbound = {}; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$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 GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksMetadataToJSON(getApiLeadScraperMicroserviceApiV1WebhooksMetadata: GetApiLeadScraperMicroserviceApiV1WebhooksMetadata): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksMetadataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$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?: GetApiLeadScraperMicroserviceApiV1WebhooksMetadata$Outbound | undefined; webhookName?: string | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$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 GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhooksToJSON(getApiLeadScraperMicroserviceApiV1WebhooksWebhooks: GetApiLeadScraperMicroserviceApiV1WebhooksWebhooks): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksData$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksData$Outbound = { webhooks?: Array | undefined; nextPageNumber?: number | undefined; totalCount?: number | undefined; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksData$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 GetApiLeadScraperMicroserviceApiV1WebhooksData$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksData$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksData$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksDataToJSON(getApiLeadScraperMicroserviceApiV1WebhooksData: GetApiLeadScraperMicroserviceApiV1WebhooksData): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$Outbound = { data: GetApiLeadScraperMicroserviceApiV1WebhooksData$Outbound; }; /** @internal */ export declare const GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$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 GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$ { /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$Outbound` instead. */ type Outbound = GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody$Outbound; } export declare function getApiLeadScraperMicroserviceApiV1WebhooksResponseBodyToJSON(getApiLeadScraperMicroserviceApiV1WebhooksResponseBody: GetApiLeadScraperMicroserviceApiV1WebhooksResponseBody): string; export declare function getApiLeadScraperMicroserviceApiV1WebhooksResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapileadscrapermicroserviceapiv1webhooks.d.ts.map