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"; /** * Message describing Campaign serving statuses. * * @generated from protobuf message google.ads.googleads.v11.enums.CampaignServingStatusEnum */ export interface CampaignServingStatusEnum { } /** * Possible serving statuses of a campaign. * * @generated from protobuf enum google.ads.googleads.v11.enums.CampaignServingStatusEnum.CampaignServingStatus */ export declare enum CampaignServingStatusEnum_CampaignServingStatus { /** * 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, /** * Serving. * * @generated from protobuf enum value: SERVING = 2; */ SERVING = 2, /** * None. * * @generated from protobuf enum value: NONE = 3; */ NONE = 3, /** * Ended. * * @generated from protobuf enum value: ENDED = 4; */ ENDED = 4, /** * Pending. * * @generated from protobuf enum value: PENDING = 5; */ PENDING = 5, /** * Suspended. * * @generated from protobuf enum value: SUSPENDED = 6; */ SUSPENDED = 6 } declare class CampaignServingStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): CampaignServingStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CampaignServingStatusEnum): CampaignServingStatusEnum; internalBinaryWrite(message: CampaignServingStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.CampaignServingStatusEnum */ export declare const CampaignServingStatusEnum: CampaignServingStatusEnum$Type; export {};