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.

56 lines (55 loc) 2.08 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 string format errors. * * @generated from protobuf message google.ads.googleads.v11.errors.StringFormatErrorEnum */ export interface StringFormatErrorEnum { } /** * Enum describing possible string format errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.StringFormatErrorEnum.StringFormatError */ export declare enum StringFormatErrorEnum_StringFormatError { /** * 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, /** * The input string value contains disallowed characters. * * @generated from protobuf enum value: ILLEGAL_CHARS = 2; */ ILLEGAL_CHARS = 2, /** * The input string value is invalid for the associated field. * * @generated from protobuf enum value: INVALID_FORMAT = 3; */ INVALID_FORMAT = 3 } declare class StringFormatErrorEnum$Type extends MessageType<StringFormatErrorEnum> { constructor(); create(value?: PartialMessage<StringFormatErrorEnum>): StringFormatErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: StringFormatErrorEnum): StringFormatErrorEnum; internalBinaryWrite(message: StringFormatErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.StringFormatErrorEnum */ export declare const StringFormatErrorEnum: StringFormatErrorEnum$Type; export {};