google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
45 lines (44 loc) • 1.77 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";
/**
* Represents a link between a FeedItem and a FeedItemSet.
*
* @generated from protobuf message google.ads.googleads.v11.resources.FeedItemSetLink
*/
export interface FeedItemSetLink {
/**
* Immutable. The resource name of the feed item set link.
* Feed item set link resource names have the form:
* `customers/{customer_id}/feedItemSetLinks/{feed_id}~{feed_item_set_id}~{feed_item_id}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Immutable. The linked FeedItem.
*
* @generated from protobuf field: string feed_item = 2;
*/
feedItem: string;
/**
* Immutable. The linked FeedItemSet.
*
* @generated from protobuf field: string feed_item_set = 3;
*/
feedItemSet: string;
}
declare class FeedItemSetLink$Type extends MessageType<FeedItemSetLink> {
constructor();
create(value?: PartialMessage<FeedItemSetLink>): FeedItemSetLink;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeedItemSetLink): FeedItemSetLink;
internalBinaryWrite(message: FeedItemSetLink, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.FeedItemSetLink
*/
export declare const FeedItemSetLink: FeedItemSetLink$Type;
export {};