google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
56 lines (55 loc) • 1.93 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";
/**
* 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<ProductChannelEnum> {
constructor();
create(value?: PartialMessage<ProductChannelEnum>): 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 {};