google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
162 lines (161 loc) • 5.69 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 Education placeholder fields.
* For more information about dynamic remarketing feeds, see
* https://support.google.com/google-ads/answer/6053288.
*
* @generated from protobuf message google.ads.googleads.v11.enums.EducationPlaceholderFieldEnum
*/
export interface EducationPlaceholderFieldEnum {
}
/**
* Possible values for Education placeholder fields.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField
*/
export declare enum EducationPlaceholderFieldEnum_EducationPlaceholderField {
/**
* 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. Required. Combination of PROGRAM ID and LOCATION ID
* must be unique per offer.
*
* @generated from protobuf enum value: PROGRAM_ID = 2;
*/
PROGRAM_ID = 2,
/**
* Data Type: STRING. Combination of PROGRAM ID and LOCATION ID must be
* unique per offer.
*
* @generated from protobuf enum value: LOCATION_ID = 3;
*/
LOCATION_ID = 3,
/**
* Data Type: STRING. Required. Main headline with program name to be shown
* in dynamic ad.
*
* @generated from protobuf enum value: PROGRAM_NAME = 4;
*/
PROGRAM_NAME = 4,
/**
* Data Type: STRING. Area of study that can be shown in dynamic ad.
*
* @generated from protobuf enum value: AREA_OF_STUDY = 5;
*/
AREA_OF_STUDY = 5,
/**
* Data Type: STRING. Description of program that can be shown in dynamic
* ad.
*
* @generated from protobuf enum value: PROGRAM_DESCRIPTION = 6;
*/
PROGRAM_DESCRIPTION = 6,
/**
* Data Type: STRING. Name of school that can be shown in dynamic ad.
*
* @generated from protobuf enum value: SCHOOL_NAME = 7;
*/
SCHOOL_NAME = 7,
/**
* Data Type: STRING. Complete school address, including postal code.
*
* @generated from protobuf enum value: ADDRESS = 8;
*/
ADDRESS = 8,
/**
* Data Type: URL. Image to be displayed in ads.
*
* @generated from protobuf enum value: THUMBNAIL_IMAGE_URL = 9;
*/
THUMBNAIL_IMAGE_URL = 9,
/**
* Data Type: URL. Alternative hosted file of image to be used in the ad.
*
* @generated from protobuf enum value: ALTERNATIVE_THUMBNAIL_IMAGE_URL = 10;
*/
ALTERNATIVE_THUMBNAIL_IMAGE_URL = 10,
/**
* Data Type: URL_LIST. Required. Final URLs to be used in ad when using
* Upgraded URLs; the more specific the better (for example, the individual
* URL of a specific program and its location).
*
* @generated from protobuf enum value: FINAL_URLS = 11;
*/
FINAL_URLS = 11,
/**
* Data Type: URL_LIST. Final mobile URLs for the ad when using Upgraded
* URLs.
*
* @generated from protobuf enum value: FINAL_MOBILE_URLS = 12;
*/
FINAL_MOBILE_URLS = 12,
/**
* Data Type: URL. Tracking template for the ad when using Upgraded URLs.
*
* @generated from protobuf enum value: TRACKING_URL = 13;
*/
TRACKING_URL = 13,
/**
* Data Type: STRING_LIST. Keywords used for product retrieval.
*
* @generated from protobuf enum value: CONTEXTUAL_KEYWORDS = 14;
*/
CONTEXTUAL_KEYWORDS = 14,
/**
* Data Type: STRING. Android app link. Must be formatted as:
* android-app://{package_id}/{scheme}/{host_path}.
* The components are defined as follows:
* package_id: app ID as specified in Google Play.
* scheme: the scheme to pass to the application. Can be HTTP, or a custom
* scheme.
* host_path: identifies the specific content within your application.
*
* @generated from protobuf enum value: ANDROID_APP_LINK = 15;
*/
ANDROID_APP_LINK = 15,
/**
* Data Type: STRING_LIST. List of recommended program IDs to show together
* with this item.
*
* @generated from protobuf enum value: SIMILAR_PROGRAM_IDS = 16;
*/
SIMILAR_PROGRAM_IDS = 16,
/**
* Data Type: STRING. iOS app link.
*
* @generated from protobuf enum value: IOS_APP_LINK = 17;
*/
IOS_APP_LINK = 17,
/**
* Data Type: INT64. iOS app store ID.
*
* @generated from protobuf enum value: IOS_APP_STORE_ID = 18;
*/
IOS_APP_STORE_ID = 18
}
declare class EducationPlaceholderFieldEnum$Type extends MessageType<EducationPlaceholderFieldEnum> {
constructor();
create(value?: PartialMessage<EducationPlaceholderFieldEnum>): EducationPlaceholderFieldEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: EducationPlaceholderFieldEnum): EducationPlaceholderFieldEnum;
internalBinaryWrite(message: EducationPlaceholderFieldEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.EducationPlaceholderFieldEnum
*/
export declare const EducationPlaceholderFieldEnum: EducationPlaceholderFieldEnum$Type;
export {};