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 asset group asset errors. * * @generated from protobuf message google.ads.googleads.v11.errors.AssetGroupAssetErrorEnum */ export interface AssetGroupAssetErrorEnum { } /** * Enum describing possible asset group asset errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError */ export declare enum AssetGroupAssetErrorEnum_AssetGroupAssetError { /** * Enum unspecified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The received error code is not known in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * Cannot add duplicated asset group asset. * * @generated from protobuf enum value: DUPLICATE_RESOURCE = 2; */ DUPLICATE_RESOURCE = 2, /** * Expandable tags are not allowed in description assets. * * @generated from protobuf enum value: EXPANDABLE_TAGS_NOT_ALLOWED_IN_DESCRIPTION = 3; */ EXPANDABLE_TAGS_NOT_ALLOWED_IN_DESCRIPTION = 3, /** * Ad customizers are not supported in assetgroup's text assets. * * @generated from protobuf enum value: AD_CUSTOMIZER_NOT_SUPPORTED = 4; */ AD_CUSTOMIZER_NOT_SUPPORTED = 4 } declare class AssetGroupAssetErrorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AssetGroupAssetErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetGroupAssetErrorEnum): AssetGroupAssetErrorEnum; internalBinaryWrite(message: AssetGroupAssetErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.AssetGroupAssetErrorEnum */ export declare const AssetGroupAssetErrorEnum: AssetGroupAssetErrorEnum$Type; export {};