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"; /** * Locality of a product offer. * * @generated from protobuf message google.ads.googleads.v11.enums.ProductChannelEnum */ export interface ProductChannelEnum { } /** * Enum describing the locality of a product offer. * * @generated from protobuf enum google.ads.googleads.v11.enums.ProductChannelEnum.ProductChannel */ export declare enum ProductChannelEnum_ProductChannel { /** * 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, /** * The item is sold online. * * @generated from protobuf enum value: ONLINE = 2; */ ONLINE = 2, /** * The item is sold in local stores. * * @generated from protobuf enum value: LOCAL = 3; */ LOCAL = 3 } declare class ProductChannelEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): ProductChannelEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProductChannelEnum): ProductChannelEnum; internalBinaryWrite(message: ProductChannelEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.ProductChannelEnum */ export declare const ProductChannelEnum: ProductChannelEnum$Type; export {};