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 different types of mobile app vendors. * * @generated from protobuf message google.ads.googleads.v11.enums.MobileAppVendorEnum */ export interface MobileAppVendorEnum { } /** * The type of mobile app vendor * * @generated from protobuf enum google.ads.googleads.v11.enums.MobileAppVendorEnum.MobileAppVendor */ export declare enum MobileAppVendorEnum_MobileAppVendor { /** * 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, /** * Mobile app vendor for Apple app store. * * @generated from protobuf enum value: APPLE_APP_STORE = 2; */ APPLE_APP_STORE = 2, /** * Mobile app vendor for Google app store. * * @generated from protobuf enum value: GOOGLE_APP_STORE = 3; */ GOOGLE_APP_STORE = 3 } declare class MobileAppVendorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): MobileAppVendorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MobileAppVendorEnum): MobileAppVendorEnum; internalBinaryWrite(message: MobileAppVendorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.MobileAppVendorEnum */ export declare const MobileAppVendorEnum: MobileAppVendorEnum$Type; export {};