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 hotel price bucket for a hotel itinerary. * * @generated from protobuf message google.ads.googleads.v11.enums.HotelPriceBucketEnum */ export interface HotelPriceBucketEnum { } /** * Enum describing possible hotel price buckets. * * @generated from protobuf enum google.ads.googleads.v11.enums.HotelPriceBucketEnum.HotelPriceBucket */ export declare enum HotelPriceBucketEnum_HotelPriceBucket { /** * Not specified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * The value is unknown in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * Uniquely lowest price. Partner has the lowest price, and no other * partners are within a small variance of that price. * * @generated from protobuf enum value: LOWEST_UNIQUE = 2; */ LOWEST_UNIQUE = 2, /** * Tied for lowest price. Partner is within a small variance of the lowest * price. * * @generated from protobuf enum value: LOWEST_TIED = 3; */ LOWEST_TIED = 3, /** * Not lowest price. Partner is not within a small variance of the lowest * price. * * @generated from protobuf enum value: NOT_LOWEST = 4; */ NOT_LOWEST = 4, /** * Partner was the only one shown. * * @generated from protobuf enum value: ONLY_PARTNER_SHOWN = 5; */ ONLY_PARTNER_SHOWN = 5 } declare class HotelPriceBucketEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): HotelPriceBucketEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: HotelPriceBucketEnum): HotelPriceBucketEnum; internalBinaryWrite(message: HotelPriceBucketEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.HotelPriceBucketEnum */ export declare const HotelPriceBucketEnum: HotelPriceBucketEnum$Type; export {};