google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
98 lines (97 loc) • 3.45 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 errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.FeedItemErrorEnum
*/
export interface FeedItemErrorEnum {
}
/**
* Enum describing possible feed item errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.FeedItemErrorEnum.FeedItemError
*/
export declare enum FeedItemErrorEnum_FeedItemError {
/**
* 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 convert the feed attribute value from string to its real type.
*
* @generated from protobuf enum value: CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING = 2;
*/
CANNOT_CONVERT_ATTRIBUTE_VALUE_FROM_STRING = 2,
/**
* Cannot operate on removed feed item.
*
* @generated from protobuf enum value: CANNOT_OPERATE_ON_REMOVED_FEED_ITEM = 3;
*/
CANNOT_OPERATE_ON_REMOVED_FEED_ITEM = 3,
/**
* Date time zone does not match the account's time zone.
*
* @generated from protobuf enum value: DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE = 4;
*/
DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE = 4,
/**
* Feed item with the key attributes could not be found.
*
* @generated from protobuf enum value: KEY_ATTRIBUTES_NOT_FOUND = 5;
*/
KEY_ATTRIBUTES_NOT_FOUND = 5,
/**
* Url feed attribute value is not valid.
*
* @generated from protobuf enum value: INVALID_URL = 6;
*/
INVALID_URL = 6,
/**
* Some key attributes are missing.
*
* @generated from protobuf enum value: MISSING_KEY_ATTRIBUTES = 7;
*/
MISSING_KEY_ATTRIBUTES = 7,
/**
* Feed item has same key attributes as another feed item.
*
* @generated from protobuf enum value: KEY_ATTRIBUTES_NOT_UNIQUE = 8;
*/
KEY_ATTRIBUTES_NOT_UNIQUE = 8,
/**
* Cannot modify key attributes on an existing feed item.
*
* @generated from protobuf enum value: CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE = 9;
*/
CANNOT_MODIFY_KEY_ATTRIBUTE_VALUE = 9,
/**
* The feed attribute value is too large.
*
* @generated from protobuf enum value: SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE = 10;
*/
SIZE_TOO_LARGE_FOR_MULTI_VALUE_ATTRIBUTE = 10
}
declare class FeedItemErrorEnum$Type extends MessageType<FeedItemErrorEnum> {
constructor();
create(value?: PartialMessage<FeedItemErrorEnum>): FeedItemErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedItemErrorEnum): FeedItemErrorEnum;
internalBinaryWrite(message: FeedItemErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.FeedItemErrorEnum
*/
export declare const FeedItemErrorEnum: FeedItemErrorEnum$Type;
export {};