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 the linkage between asset * set and its container. * * @generated from protobuf message google.ads.googleads.v11.enums.AssetSetLinkStatusEnum */ export interface AssetSetLinkStatusEnum { } /** * The possible statuses of the linkage between asset set and its container. * * @generated from protobuf enum google.ads.googleads.v11.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus */ export declare enum AssetSetLinkStatusEnum_AssetSetLinkStatus { /** * 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 linkage between asset set and its container is enabled. * * @generated from protobuf enum value: ENABLED = 2; */ ENABLED = 2, /** * The linkage between asset set and its container is removed. * * @generated from protobuf enum value: REMOVED = 3; */ REMOVED = 3 } declare class AssetSetLinkStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AssetSetLinkStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetSetLinkStatusEnum): AssetSetLinkStatusEnum; internalBinaryWrite(message: AssetSetLinkStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AssetSetLinkStatusEnum */ export declare const AssetSetLinkStatusEnum: AssetSetLinkStatusEnum$Type; export {};