google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
92 lines (91 loc) • 3.14 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";
/**
* Values for Location placeholder fields.
*
* @generated from protobuf message google.ads.googleads.v11.enums.LocationPlaceholderFieldEnum
*/
export interface LocationPlaceholderFieldEnum {
}
/**
* Possible values for Location placeholder fields.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField
*/
export declare enum LocationPlaceholderFieldEnum_LocationPlaceholderField {
/**
* 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,
/**
* Data Type: STRING. The name of the business.
*
* @generated from protobuf enum value: BUSINESS_NAME = 2;
*/
BUSINESS_NAME = 2,
/**
* Data Type: STRING. Line 1 of the business address.
*
* @generated from protobuf enum value: ADDRESS_LINE_1 = 3;
*/
ADDRESS_LINE_1 = 3,
/**
* Data Type: STRING. Line 2 of the business address.
*
* @generated from protobuf enum value: ADDRESS_LINE_2 = 4;
*/
ADDRESS_LINE_2 = 4,
/**
* Data Type: STRING. City of the business address.
*
* @generated from protobuf enum value: CITY = 5;
*/
CITY = 5,
/**
* Data Type: STRING. Province of the business address.
*
* @generated from protobuf enum value: PROVINCE = 6;
*/
PROVINCE = 6,
/**
* Data Type: STRING. Postal code of the business address.
*
* @generated from protobuf enum value: POSTAL_CODE = 7;
*/
POSTAL_CODE = 7,
/**
* Data Type: STRING. Country code of the business address.
*
* @generated from protobuf enum value: COUNTRY_CODE = 8;
*/
COUNTRY_CODE = 8,
/**
* Data Type: STRING. Phone number of the business.
*
* @generated from protobuf enum value: PHONE_NUMBER = 9;
*/
PHONE_NUMBER = 9
}
declare class LocationPlaceholderFieldEnum$Type extends MessageType<LocationPlaceholderFieldEnum> {
constructor();
create(value?: PartialMessage<LocationPlaceholderFieldEnum>): LocationPlaceholderFieldEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LocationPlaceholderFieldEnum): LocationPlaceholderFieldEnum;
internalBinaryWrite(message: LocationPlaceholderFieldEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.LocationPlaceholderFieldEnum
*/
export declare const LocationPlaceholderFieldEnum: LocationPlaceholderFieldEnum$Type;
export {};