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.49 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 attribute reference errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.FeedAttributeReferenceErrorEnum
*/
export interface FeedAttributeReferenceErrorEnum {
}
/**
* Enum describing possible feed attribute reference errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
*/
export declare enum FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError {
/**
* 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,
/**
* A feed referenced by ID has been removed.
*
* @generated from protobuf enum value: CANNOT_REFERENCE_REMOVED_FEED = 2;
*/
CANNOT_REFERENCE_REMOVED_FEED = 2,
/**
* There is no enabled feed with the given name.
*
* @generated from protobuf enum value: INVALID_FEED_NAME = 3;
*/
INVALID_FEED_NAME = 3,
/**
* There is no feed attribute in an enabled feed with the given name.
*
* @generated from protobuf enum value: INVALID_FEED_ATTRIBUTE_NAME = 4;
*/
INVALID_FEED_ATTRIBUTE_NAME = 4
}
declare class FeedAttributeReferenceErrorEnum$Type extends MessageType<FeedAttributeReferenceErrorEnum> {
constructor();
create(value?: PartialMessage<FeedAttributeReferenceErrorEnum>): FeedAttributeReferenceErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedAttributeReferenceErrorEnum): FeedAttributeReferenceErrorEnum;
internalBinaryWrite(message: FeedAttributeReferenceErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.FeedAttributeReferenceErrorEnum
*/
export declare const FeedAttributeReferenceErrorEnum: FeedAttributeReferenceErrorEnum$Type;
export {};