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 app store type in a legacy app install ad. * * @generated from protobuf message google.ads.googleads.v11.enums.LegacyAppInstallAdAppStoreEnum */ export interface LegacyAppInstallAdAppStoreEnum { } /** * App store type in a legacy app install ad. * * @generated from protobuf enum google.ads.googleads.v11.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore */ export declare enum LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore { /** * 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, /** * Apple iTunes. * * @generated from protobuf enum value: APPLE_APP_STORE = 2; */ APPLE_APP_STORE = 2, /** * Google Play. * * @generated from protobuf enum value: GOOGLE_PLAY = 3; */ GOOGLE_PLAY = 3, /** * Windows Store. * * @generated from protobuf enum value: WINDOWS_STORE = 4; */ WINDOWS_STORE = 4, /** * Windows Phone Store. * * @generated from protobuf enum value: WINDOWS_PHONE_STORE = 5; */ WINDOWS_PHONE_STORE = 5, /** * The app is hosted in a Chinese app store. * * @generated from protobuf enum value: CN_APP_STORE = 6; */ CN_APP_STORE = 6 } declare class LegacyAppInstallAdAppStoreEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): LegacyAppInstallAdAppStoreEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LegacyAppInstallAdAppStoreEnum): LegacyAppInstallAdAppStoreEnum; internalBinaryWrite(message: LegacyAppInstallAdAppStoreEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.LegacyAppInstallAdAppStoreEnum */ export declare const LegacyAppInstallAdAppStoreEnum: LegacyAppInstallAdAppStoreEnum$Type; export {};