google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
50 lines (49 loc) • 1.86 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 asset set errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.AssetSetErrorEnum
*/
export interface AssetSetErrorEnum {
}
/**
* Enum describing possible asset set errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.AssetSetErrorEnum.AssetSetError
*/
export declare enum AssetSetErrorEnum_AssetSetError {
/**
* 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 asset set name matches that of another enabled asset set.
*
* @generated from protobuf enum value: DUPLICATE_ASSET_SET_NAME = 2;
*/
DUPLICATE_ASSET_SET_NAME = 2
}
declare class AssetSetErrorEnum$Type extends MessageType<AssetSetErrorEnum> {
constructor();
create(value?: PartialMessage<AssetSetErrorEnum>): AssetSetErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetSetErrorEnum): AssetSetErrorEnum;
internalBinaryWrite(message: AssetSetErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.AssetSetErrorEnum
*/
export declare const AssetSetErrorEnum: AssetSetErrorEnum$Type;
export {};