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 price extension price unit. * * @generated from protobuf message google.ads.googleads.v11.enums.PriceExtensionPriceUnitEnum */ export interface PriceExtensionPriceUnitEnum { } /** * Price extension price unit. * * @generated from protobuf enum google.ads.googleads.v11.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit */ export declare enum PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit { /** * 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, /** * Per hour. * * @generated from protobuf enum value: PER_HOUR = 2; */ PER_HOUR = 2, /** * Per day. * * @generated from protobuf enum value: PER_DAY = 3; */ PER_DAY = 3, /** * Per week. * * @generated from protobuf enum value: PER_WEEK = 4; */ PER_WEEK = 4, /** * Per month. * * @generated from protobuf enum value: PER_MONTH = 5; */ PER_MONTH = 5, /** * Per year. * * @generated from protobuf enum value: PER_YEAR = 6; */ PER_YEAR = 6, /** * Per night. * * @generated from protobuf enum value: PER_NIGHT = 7; */ PER_NIGHT = 7 } declare class PriceExtensionPriceUnitEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): PriceExtensionPriceUnitEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PriceExtensionPriceUnitEnum): PriceExtensionPriceUnitEnum; internalBinaryWrite(message: PriceExtensionPriceUnitEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.PriceExtensionPriceUnitEnum */ export declare const PriceExtensionPriceUnitEnum: PriceExtensionPriceUnitEnum$Type; export {};