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.21 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";
/**
* The relative performance compared to other advertisers.
*
* @generated from protobuf message google.ads.googleads.v11.enums.QualityScoreBucketEnum
*/
export interface QualityScoreBucketEnum {
}
/**
* Enum listing the possible quality score buckets.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.QualityScoreBucketEnum.QualityScoreBucket
*/
export declare enum QualityScoreBucketEnum_QualityScoreBucket {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* Used for return value only. Represents value unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Quality of the creative is below average.
*
* @generated from protobuf enum value: BELOW_AVERAGE = 2;
*/
BELOW_AVERAGE = 2,
/**
* Quality of the creative is average.
*
* @generated from protobuf enum value: AVERAGE = 3;
*/
AVERAGE = 3,
/**
* Quality of the creative is above average.
*
* @generated from protobuf enum value: ABOVE_AVERAGE = 4;
*/
ABOVE_AVERAGE = 4
}
declare class QualityScoreBucketEnum$Type extends MessageType<QualityScoreBucketEnum> {
constructor();
create(value?: PartialMessage<QualityScoreBucketEnum>): QualityScoreBucketEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: QualityScoreBucketEnum): QualityScoreBucketEnum;
internalBinaryWrite(message: QualityScoreBucketEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.QualityScoreBucketEnum
*/
export declare const QualityScoreBucketEnum: QualityScoreBucketEnum$Type;
export {};