import type { BinaryWriteOptions } from "@protobuf-ts/runtime"; import type { IBinaryWriter } from "@protobuf-ts/runtime"; import type { BinaryReadOptions } from "@protobuf-ts/runtime"; import type { IBinaryReader } from "@protobuf-ts/runtime"; import type { PartialMessage } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime"; /** * Container for enum describing possible errors from KeywordPlanIdeaService. * * @generated from protobuf message google.ads.googleads.v11.errors.KeywordPlanIdeaErrorEnum */ export interface KeywordPlanIdeaErrorEnum { } /** * Enum describing possible errors from KeywordPlanIdeaService. * * @generated from protobuf enum google.ads.googleads.v11.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError */ export declare enum KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError { /** * Enum unspecified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The received error code is not known in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * Error when crawling the input URL. * * @generated from protobuf enum value: URL_CRAWL_ERROR = 2; */ URL_CRAWL_ERROR = 2, /** * The input has an invalid value. * * @generated from protobuf enum value: INVALID_VALUE = 3; */ INVALID_VALUE = 3 } declare class KeywordPlanIdeaErrorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): KeywordPlanIdeaErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: KeywordPlanIdeaErrorEnum): KeywordPlanIdeaErrorEnum; internalBinaryWrite(message: KeywordPlanIdeaErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.KeywordPlanIdeaErrorEnum */ export declare const KeywordPlanIdeaErrorEnum: KeywordPlanIdeaErrorEnum$Type; export {};