google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
41 lines (40 loc) • 1.84 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";
import { PlaceholderTypeEnum_PlaceholderType } from "../enums/placeholder_type";
/**
* A feed placeholder view.
*
* @generated from protobuf message google.ads.googleads.v11.resources.FeedPlaceholderView
*/
export interface FeedPlaceholderView {
/**
* Output only. The resource name of the feed placeholder view.
* Feed placeholder view resource names have the form:
*
* `customers/{customer_id}/feedPlaceholderViews/{placeholder_type}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Output only. The placeholder type of the feed placeholder view.
*
* @generated from protobuf field: google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 2;
*/
placeholderType: PlaceholderTypeEnum_PlaceholderType;
}
declare class FeedPlaceholderView$Type extends MessageType<FeedPlaceholderView> {
constructor();
create(value?: PartialMessage<FeedPlaceholderView>): FeedPlaceholderView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedPlaceholderView): FeedPlaceholderView;
internalBinaryWrite(message: FeedPlaceholderView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.FeedPlaceholderView
*/
export declare const FeedPlaceholderView: FeedPlaceholderView$Type;
export {};