google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
62 lines (61 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 unit of radius in location group.
*
* @generated from protobuf message google.ads.googleads.v11.enums.LocationGroupRadiusUnitsEnum
*/
export interface LocationGroupRadiusUnitsEnum {
}
/**
* The unit of radius distance in location group (for example, MILES)
*
* @generated from protobuf enum google.ads.googleads.v11.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
*/
export declare enum LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits {
/**
* 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,
/**
* Meters
*
* @generated from protobuf enum value: METERS = 2;
*/
METERS = 2,
/**
* Miles
*
* @generated from protobuf enum value: MILES = 3;
*/
MILES = 3,
/**
* Milli Miles
*
* @generated from protobuf enum value: MILLI_MILES = 4;
*/
MILLI_MILES = 4
}
declare class LocationGroupRadiusUnitsEnum$Type extends MessageType<LocationGroupRadiusUnitsEnum> {
constructor();
create(value?: PartialMessage<LocationGroupRadiusUnitsEnum>): LocationGroupRadiusUnitsEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LocationGroupRadiusUnitsEnum): LocationGroupRadiusUnitsEnum;
internalBinaryWrite(message: LocationGroupRadiusUnitsEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.LocationGroupRadiusUnitsEnum
*/
export declare const LocationGroupRadiusUnitsEnum: LocationGroupRadiusUnitsEnum$Type;
export {};