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 statuses of an ad group. * * @generated from protobuf message google.ads.googleads.v11.enums.AdGroupStatusEnum */ export interface AdGroupStatusEnum { } /** * The possible statuses of an ad group. * * @generated from protobuf enum google.ads.googleads.v11.enums.AdGroupStatusEnum.AdGroupStatus */ export declare enum AdGroupStatusEnum_AdGroupStatus { /** * The status has not 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 ad group is enabled. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * The ad group is paused. * * @generated from protobuf enum value: PAUSED = 3; */ PAUSED = 3, /** * The ad group is removed. * * @generated from protobuf enum value: REMOVED = 4; */ REMOVED = 4 } declare class AdGroupStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AdGroupStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupStatusEnum): AdGroupStatusEnum; internalBinaryWrite(message: AdGroupStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AdGroupStatusEnum */ export declare const AdGroupStatusEnum: AdGroupStatusEnum$Type; export {};