google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
52 lines (51 loc) • 2.09 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";
/**
* Message describing feed item geo targeting restriction.
*
* @generated from protobuf message google.ads.googleads.v11.enums.GeoTargetingRestrictionEnum
*/
export interface GeoTargetingRestrictionEnum {
}
/**
* A restriction used to determine if the request context's
* geo should be matched.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction
*/
export declare enum GeoTargetingRestrictionEnum_GeoTargetingRestriction {
/**
* 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,
/**
* Indicates that request context should match the physical location of
* the user.
*
* @generated from protobuf enum value: LOCATION_OF_PRESENCE = 2;
*/
LOCATION_OF_PRESENCE = 2
}
declare class GeoTargetingRestrictionEnum$Type extends MessageType<GeoTargetingRestrictionEnum> {
constructor();
create(value?: PartialMessage<GeoTargetingRestrictionEnum>): GeoTargetingRestrictionEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GeoTargetingRestrictionEnum): GeoTargetingRestrictionEnum;
internalBinaryWrite(message: GeoTargetingRestrictionEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.GeoTargetingRestrictionEnum
*/
export declare const GeoTargetingRestrictionEnum: GeoTargetingRestrictionEnum$Type;
export {};