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