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 webpage condition operator in webpage * criterion. * * @generated from protobuf message google.ads.googleads.v11.enums.WebpageConditionOperatorEnum */ export interface WebpageConditionOperatorEnum { } /** * The webpage condition operator in webpage criterion. * * @generated from protobuf enum google.ads.googleads.v11.enums.WebpageConditionOperatorEnum.WebpageConditionOperator */ export declare enum WebpageConditionOperatorEnum_WebpageConditionOperator { /** * 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, /** * The argument web condition is equal to the compared web condition. * * @generated from protobuf enum value: EQUALS = 2; */ EQUALS = 2, /** * The argument web condition is part of the compared web condition. * * @generated from protobuf enum value: CONTAINS = 3; */ CONTAINS = 3 } declare class WebpageConditionOperatorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): WebpageConditionOperatorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: WebpageConditionOperatorEnum): WebpageConditionOperatorEnum; internalBinaryWrite(message: WebpageConditionOperatorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.WebpageConditionOperatorEnum */ export declare const WebpageConditionOperatorEnum: WebpageConditionOperatorEnum$Type; export {};