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 a campaign. * * @generated from protobuf message google.ads.googleads.v11.enums.CampaignStatusEnum */ export interface CampaignStatusEnum { } /** * Possible statuses of a campaign. * * @generated from protobuf enum google.ads.googleads.v11.enums.CampaignStatusEnum.CampaignStatus */ export declare enum CampaignStatusEnum_CampaignStatus { /** * Not specified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * Used for return value only. Represents value unknown in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * Campaign is currently serving ads depending on budget information. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * Campaign has been paused by the user. * * @generated from protobuf enum value: PAUSED = 3; */ PAUSED = 3, /** * Campaign has been removed. * * @generated from protobuf enum value: REMOVED = 4; */ REMOVED = 4 } declare class CampaignStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): CampaignStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CampaignStatusEnum): CampaignStatusEnum; internalBinaryWrite(message: CampaignStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.CampaignStatusEnum */ export declare const CampaignStatusEnum: CampaignStatusEnum$Type; export {};