google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
92 lines (91 loc) • 3.47 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 feed item set errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.FeedItemSetErrorEnum
*/
export interface FeedItemSetErrorEnum {
}
/**
* Enum describing possible feed item set errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.FeedItemSetErrorEnum.FeedItemSetError
*/
export declare enum FeedItemSetErrorEnum_FeedItemSetError {
/**
* 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,
/**
* The given ID refers to a removed FeedItemSet.
*
* @generated from protobuf enum value: FEED_ITEM_SET_REMOVED = 2;
*/
FEED_ITEM_SET_REMOVED = 2,
/**
* The dynamic filter of a feed item set cannot be cleared on UPDATE if it
* exists. A set is either static or dynamic once added, and that cannot
* change.
*
* @generated from protobuf enum value: CANNOT_CLEAR_DYNAMIC_FILTER = 3;
*/
CANNOT_CLEAR_DYNAMIC_FILTER = 3,
/**
* The dynamic filter of a feed item set cannot be created on UPDATE if it
* does not exist. A set is either static or dynamic once added, and that
* cannot change.
*
* @generated from protobuf enum value: CANNOT_CREATE_DYNAMIC_FILTER = 4;
*/
CANNOT_CREATE_DYNAMIC_FILTER = 4,
/**
* FeedItemSets can only be made for location or affiliate location feeds.
*
* @generated from protobuf enum value: INVALID_FEED_TYPE = 5;
*/
INVALID_FEED_TYPE = 5,
/**
* FeedItemSets duplicate name. Name should be unique within an account.
*
* @generated from protobuf enum value: DUPLICATE_NAME = 6;
*/
DUPLICATE_NAME = 6,
/**
* The feed type of the parent Feed is not compatible with the type of
* dynamic filter being set. For example, you can only set
* dynamic_location_set_filter for LOCATION feed item sets.
*
* @generated from protobuf enum value: WRONG_DYNAMIC_FILTER_FOR_FEED_TYPE = 7;
*/
WRONG_DYNAMIC_FILTER_FOR_FEED_TYPE = 7,
/**
* Chain ID specified for AffiliateLocationFeedData is invalid.
*
* @generated from protobuf enum value: DYNAMIC_FILTER_INVALID_CHAIN_IDS = 8;
*/
DYNAMIC_FILTER_INVALID_CHAIN_IDS = 8
}
declare class FeedItemSetErrorEnum$Type extends MessageType<FeedItemSetErrorEnum> {
constructor();
create(value?: PartialMessage<FeedItemSetErrorEnum>): FeedItemSetErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedItemSetErrorEnum): FeedItemSetErrorEnum;
internalBinaryWrite(message: FeedItemSetErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.FeedItemSetErrorEnum
*/
export declare const FeedItemSetErrorEnum: FeedItemSetErrorEnum$Type;
export {};