google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
57 lines (56 loc) • 2.22 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";
/**
* 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<WebpageConditionOperatorEnum> {
constructor();
create(value?: PartialMessage<WebpageConditionOperatorEnum>): 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 {};