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 link. * * @generated from protobuf message google.ads.googleads.v11.enums.AssetLinkStatusEnum */ export interface AssetLinkStatusEnum { } /** * Enum describing statuses of an asset link. * * @generated from protobuf enum google.ads.googleads.v11.enums.AssetLinkStatusEnum.AssetLinkStatus */ export declare enum AssetLinkStatusEnum_AssetLinkStatus { /** * 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, /** * Asset link is enabled. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * Asset link has been removed. * * @generated from protobuf enum value: REMOVED = 3; */ REMOVED = 3, /** * Asset link is paused. * * @generated from protobuf enum value: PAUSED = 4; */ PAUSED = 4 } declare class AssetLinkStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AssetLinkStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetLinkStatusEnum): AssetLinkStatusEnum; internalBinaryWrite(message: AssetLinkStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AssetLinkStatusEnum */ export declare const AssetLinkStatusEnum: AssetLinkStatusEnum$Type; export {};