UNPKG

google-ads-api-client

Version:

A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.

110 lines (109 loc) 3.65 kB
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 function parsing errors. * * @generated from protobuf message google.ads.googleads.v11.errors.FunctionParsingErrorEnum */ export interface FunctionParsingErrorEnum { } /** * Enum describing possible function parsing errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.FunctionParsingErrorEnum.FunctionParsingError */ export declare enum FunctionParsingErrorEnum_FunctionParsingError { /** * 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, /** * Unexpected end of function string. * * @generated from protobuf enum value: NO_MORE_INPUT = 2; */ NO_MORE_INPUT = 2, /** * Could not find an expected character. * * @generated from protobuf enum value: EXPECTED_CHARACTER = 3; */ EXPECTED_CHARACTER = 3, /** * Unexpected separator character. * * @generated from protobuf enum value: UNEXPECTED_SEPARATOR = 4; */ UNEXPECTED_SEPARATOR = 4, /** * Unmatched left bracket or parenthesis. * * @generated from protobuf enum value: UNMATCHED_LEFT_BRACKET = 5; */ UNMATCHED_LEFT_BRACKET = 5, /** * Unmatched right bracket or parenthesis. * * @generated from protobuf enum value: UNMATCHED_RIGHT_BRACKET = 6; */ UNMATCHED_RIGHT_BRACKET = 6, /** * Functions are nested too deeply. * * @generated from protobuf enum value: TOO_MANY_NESTED_FUNCTIONS = 7; */ TOO_MANY_NESTED_FUNCTIONS = 7, /** * Missing right-hand-side operand. * * @generated from protobuf enum value: MISSING_RIGHT_HAND_OPERAND = 8; */ MISSING_RIGHT_HAND_OPERAND = 8, /** * Invalid operator/function name. * * @generated from protobuf enum value: INVALID_OPERATOR_NAME = 9; */ INVALID_OPERATOR_NAME = 9, /** * Feed attribute operand's argument is not an integer. * * @generated from protobuf enum value: FEED_ATTRIBUTE_OPERAND_ARGUMENT_NOT_INTEGER = 10; */ FEED_ATTRIBUTE_OPERAND_ARGUMENT_NOT_INTEGER = 10, /** * Missing function operands. * * @generated from protobuf enum value: NO_OPERANDS = 11; */ NO_OPERANDS = 11, /** * Function had too many operands. * * @generated from protobuf enum value: TOO_MANY_OPERANDS = 12; */ TOO_MANY_OPERANDS = 12 } declare class FunctionParsingErrorEnum$Type extends MessageType<FunctionParsingErrorEnum> { constructor(); create(value?: PartialMessage<FunctionParsingErrorEnum>): FunctionParsingErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FunctionParsingErrorEnum): FunctionParsingErrorEnum; internalBinaryWrite(message: FunctionParsingErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.FunctionParsingErrorEnum */ export declare const FunctionParsingErrorEnum: FunctionParsingErrorEnum$Type; export {};