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 { constructor(); create(value?: PartialMessage): 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 {};