google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
87 lines (86 loc) • 3.24 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 customer feed errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.CustomerFeedErrorEnum
*/
export interface CustomerFeedErrorEnum {
}
/**
* Enum describing possible customer feed errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.CustomerFeedErrorEnum.CustomerFeedError
*/
export declare enum CustomerFeedErrorEnum_CustomerFeedError {
/**
* 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 customer 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 CustomerFeed already exists. Update should be used to modify the
* existing CustomerFeed.
*
* @generated from protobuf enum value: CANNOT_CREATE_ALREADY_EXISTING_CUSTOMER_FEED = 4;
*/
CANNOT_CREATE_ALREADY_EXISTING_CUSTOMER_FEED = 4,
/**
* Cannot update removed customer feed.
*
* @generated from protobuf enum value: CANNOT_MODIFY_REMOVED_CUSTOMER_FEED = 5;
*/
CANNOT_MODIFY_REMOVED_CUSTOMER_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,
/**
* Placeholder not allowed at the account level.
*
* @generated from protobuf enum value: PLACEHOLDER_TYPE_NOT_ALLOWED_ON_CUSTOMER_FEED = 8;
*/
PLACEHOLDER_TYPE_NOT_ALLOWED_ON_CUSTOMER_FEED = 8
}
declare class CustomerFeedErrorEnum$Type extends MessageType<CustomerFeedErrorEnum> {
constructor();
create(value?: PartialMessage<CustomerFeedErrorEnum>): CustomerFeedErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomerFeedErrorEnum): CustomerFeedErrorEnum;
internalBinaryWrite(message: CustomerFeedErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.CustomerFeedErrorEnum
*/
export declare const CustomerFeedErrorEnum: CustomerFeedErrorEnum$Type;
export {};