google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
62 lines (61 loc) • 2.39 kB
TypeScript
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<AssetGroupAssetErrorEnum> {
constructor();
create(value?: PartialMessage<AssetGroupAssetErrorEnum>): 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 {};