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 Affiliate Location placeholder fields. * * @generated from protobuf message google.ads.googleads.v11.enums.AffiliateLocationPlaceholderFieldEnum */ export interface AffiliateLocationPlaceholderFieldEnum { } /** * Possible values for Affiliate Location placeholder fields. * * @generated from protobuf enum google.ads.googleads.v11.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField */ export declare enum AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField { /** * 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, /** * Data Type: STRING. Language code of the business. * * @generated from protobuf enum value: LANGUAGE_CODE = 10; */ LANGUAGE_CODE = 10, /** * Data Type: INT64. ID of the chain. * * @generated from protobuf enum value: CHAIN_ID = 11; */ CHAIN_ID = 11, /** * Data Type: STRING. Name of the chain. * * @generated from protobuf enum value: CHAIN_NAME = 12; */ CHAIN_NAME = 12 } declare class AffiliateLocationPlaceholderFieldEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AffiliateLocationPlaceholderFieldEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AffiliateLocationPlaceholderFieldEnum): AffiliateLocationPlaceholderFieldEnum; internalBinaryWrite(message: AffiliateLocationPlaceholderFieldEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AffiliateLocationPlaceholderFieldEnum */ export declare const AffiliateLocationPlaceholderFieldEnum: AffiliateLocationPlaceholderFieldEnum$Type; export {};