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 geo target constant suggestion errors. * * @generated from protobuf message google.ads.googleads.v11.errors.GeoTargetConstantSuggestionErrorEnum */ export interface GeoTargetConstantSuggestionErrorEnum { } /** * Enum describing possible geo target constant suggestion errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError */ export declare enum GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError { /** * 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, /** * A location name cannot be greater than 300 characters. * * @generated from protobuf enum value: LOCATION_NAME_SIZE_LIMIT = 2; */ LOCATION_NAME_SIZE_LIMIT = 2, /** * At most 25 location names can be specified in a SuggestGeoTargetConstants * method. * * @generated from protobuf enum value: LOCATION_NAME_LIMIT = 3; */ LOCATION_NAME_LIMIT = 3, /** * The country code is invalid. * * @generated from protobuf enum value: INVALID_COUNTRY_CODE = 4; */ INVALID_COUNTRY_CODE = 4, /** * Geo target constant resource names or location names must be provided in * the request. * * @generated from protobuf enum value: REQUEST_PARAMETERS_UNSET = 5; */ REQUEST_PARAMETERS_UNSET = 5 } declare class GeoTargetConstantSuggestionErrorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): GeoTargetConstantSuggestionErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GeoTargetConstantSuggestionErrorEnum): GeoTargetConstantSuggestionErrorEnum; internalBinaryWrite(message: GeoTargetConstantSuggestionErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.GeoTargetConstantSuggestionErrorEnum */ export declare const GeoTargetConstantSuggestionErrorEnum: GeoTargetConstantSuggestionErrorEnum$Type; export {};