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 describing the status of a geo target constant. * * @generated from protobuf message google.ads.googleads.v11.enums.GeoTargetConstantStatusEnum */ export interface GeoTargetConstantStatusEnum { } /** * The possible statuses of a geo target constant. * * @generated from protobuf enum google.ads.googleads.v11.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus */ export declare enum GeoTargetConstantStatusEnum_GeoTargetConstantStatus { /** * No value has been specified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The received value is not known in this version. * * This is a response-only value. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * The geo target constant is valid. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * The geo target constant is obsolete and will be removed. * * @generated from protobuf enum value: REMOVAL_PLANNED = 3; */ REMOVAL_PLANNED = 3 } declare class GeoTargetConstantStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): GeoTargetConstantStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GeoTargetConstantStatusEnum): GeoTargetConstantStatusEnum; internalBinaryWrite(message: GeoTargetConstantStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.GeoTargetConstantStatusEnum */ export declare const GeoTargetConstantStatusEnum: GeoTargetConstantStatusEnum$Type; export {};