google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
63 lines (62 loc) • 2.35 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 user data errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.UserDataErrorEnum
*/
export interface UserDataErrorEnum {
}
/**
* Enum describing possible request errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.UserDataErrorEnum.UserDataError
*/
export declare enum UserDataErrorEnum_UserDataError {
/**
* 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,
/**
* Customer is not allowed to perform operations related to Customer Match.
*
* @generated from protobuf enum value: OPERATIONS_FOR_CUSTOMER_MATCH_NOT_ALLOWED = 2;
*/
OPERATIONS_FOR_CUSTOMER_MATCH_NOT_ALLOWED = 2,
/**
* Maximum number of user identifiers allowed for each request is 100 and
* for each operation is 20.
*
* @generated from protobuf enum value: TOO_MANY_USER_IDENTIFIERS = 3;
*/
TOO_MANY_USER_IDENTIFIERS = 3,
/**
* Current user list is not applicable for the given customer.
*
* @generated from protobuf enum value: USER_LIST_NOT_APPLICABLE = 4;
*/
USER_LIST_NOT_APPLICABLE = 4
}
declare class UserDataErrorEnum$Type extends MessageType<UserDataErrorEnum> {
constructor();
create(value?: PartialMessage<UserDataErrorEnum>): UserDataErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserDataErrorEnum): UserDataErrorEnum;
internalBinaryWrite(message: UserDataErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.UserDataErrorEnum
*/
export declare const UserDataErrorEnum: UserDataErrorEnum$Type;
export {};