google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
63 lines (62 loc) • 2.23 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";
/**
* Container for enum describing plannable networks.
*
* @generated from protobuf message google.ads.googleads.v11.enums.ReachPlanNetworkEnum
*/
export interface ReachPlanNetworkEnum {
}
/**
* Possible plannable network values.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.ReachPlanNetworkEnum.ReachPlanNetwork
*/
export declare enum ReachPlanNetworkEnum_ReachPlanNetwork {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* Used as a return value only. Represents value unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* YouTube network.
*
* @generated from protobuf enum value: YOUTUBE = 2;
*/
YOUTUBE = 2,
/**
* Google Video Partners (GVP) network.
*
* @generated from protobuf enum value: GOOGLE_VIDEO_PARTNERS = 3;
*/
GOOGLE_VIDEO_PARTNERS = 3,
/**
* A combination of the YouTube network and the Google Video Partners
* network.
*
* @generated from protobuf enum value: YOUTUBE_AND_GOOGLE_VIDEO_PARTNERS = 4;
*/
YOUTUBE_AND_GOOGLE_VIDEO_PARTNERS = 4
}
declare class ReachPlanNetworkEnum$Type extends MessageType<ReachPlanNetworkEnum> {
constructor();
create(value?: PartialMessage<ReachPlanNetworkEnum>): ReachPlanNetworkEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReachPlanNetworkEnum): ReachPlanNetworkEnum;
internalBinaryWrite(message: ReachPlanNetworkEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.ReachPlanNetworkEnum
*/
export declare const ReachPlanNetworkEnum: ReachPlanNetworkEnum$Type;
export {};