google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
88 lines (87 loc) • 3.25 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 ad group feed errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.AdGroupFeedErrorEnum
*/
export interface AdGroupFeedErrorEnum {
}
/**
* Enum describing possible ad group feed errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.AdGroupFeedErrorEnum.AdGroupFeedError
*/
export declare enum AdGroupFeedErrorEnum_AdGroupFeedError {
/**
* 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,
/**
* An active feed already exists for this ad group and place holder type.
*
* @generated from protobuf enum value: FEED_ALREADY_EXISTS_FOR_PLACEHOLDER_TYPE = 2;
*/
FEED_ALREADY_EXISTS_FOR_PLACEHOLDER_TYPE = 2,
/**
* The specified feed is removed.
*
* @generated from protobuf enum value: CANNOT_CREATE_FOR_REMOVED_FEED = 3;
*/
CANNOT_CREATE_FOR_REMOVED_FEED = 3,
/**
* The AdGroupFeed already exists. UPDATE operation should be used to modify
* the existing AdGroupFeed.
*
* @generated from protobuf enum value: ADGROUP_FEED_ALREADY_EXISTS = 4;
*/
ADGROUP_FEED_ALREADY_EXISTS = 4,
/**
* Cannot operate on removed AdGroupFeed.
*
* @generated from protobuf enum value: CANNOT_OPERATE_ON_REMOVED_ADGROUP_FEED = 5;
*/
CANNOT_OPERATE_ON_REMOVED_ADGROUP_FEED = 5,
/**
* Invalid placeholder type.
*
* @generated from protobuf enum value: INVALID_PLACEHOLDER_TYPE = 6;
*/
INVALID_PLACEHOLDER_TYPE = 6,
/**
* Feed mapping for this placeholder type does not exist.
*
* @generated from protobuf enum value: MISSING_FEEDMAPPING_FOR_PLACEHOLDER_TYPE = 7;
*/
MISSING_FEEDMAPPING_FOR_PLACEHOLDER_TYPE = 7,
/**
* Location AdGroupFeeds cannot be created unless there is a location
* CustomerFeed for the specified feed.
*
* @generated from protobuf enum value: NO_EXISTING_LOCATION_CUSTOMER_FEED = 8;
*/
NO_EXISTING_LOCATION_CUSTOMER_FEED = 8
}
declare class AdGroupFeedErrorEnum$Type extends MessageType<AdGroupFeedErrorEnum> {
constructor();
create(value?: PartialMessage<AdGroupFeedErrorEnum>): AdGroupFeedErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupFeedErrorEnum): AdGroupFeedErrorEnum;
internalBinaryWrite(message: AdGroupFeedErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.AdGroupFeedErrorEnum
*/
export declare const AdGroupFeedErrorEnum: AdGroupFeedErrorEnum$Type;
export {};