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) • 2.42 kB
TypeScript
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateFeedItemSetLinksResponse } from "./feed_item_set_link_service";
import type { MutateFeedItemSetLinksRequest } from "./feed_item_set_link_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
* Service to manage feed item set links.
*
* @generated from protobuf service google.ads.googleads.v11.services.FeedItemSetLinkService
*/
export interface IFeedItemSetLinkServiceClient {
/**
* Creates, updates, or removes feed item set links.
*
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
* @generated from protobuf rpc: MutateFeedItemSetLinks(google.ads.googleads.v11.services.MutateFeedItemSetLinksRequest) returns (google.ads.googleads.v11.services.MutateFeedItemSetLinksResponse);
*/
mutateFeedItemSetLinks(input: MutateFeedItemSetLinksRequest, options?: RpcOptions): UnaryCall<MutateFeedItemSetLinksRequest, MutateFeedItemSetLinksResponse>;
}
/**
* Service to manage feed item set links.
*
* @generated from protobuf service google.ads.googleads.v11.services.FeedItemSetLinkService
*/
export declare class FeedItemSetLinkServiceClient implements IFeedItemSetLinkServiceClient, ServiceInfo {
private readonly _transport;
typeName: string;
methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
options: {
[extensionName: string]: import("@protobuf-ts/runtime").JsonValue;
};
constructor(_transport: RpcTransport);
/**
* Creates, updates, or removes feed item set links.
*
* List of thrown errors:
* [AuthenticationError]()
* [AuthorizationError]()
* [HeaderError]()
* [InternalError]()
* [QuotaError]()
* [RequestError]()
*
* @generated from protobuf rpc: MutateFeedItemSetLinks(google.ads.googleads.v11.services.MutateFeedItemSetLinksRequest) returns (google.ads.googleads.v11.services.MutateFeedItemSetLinksResponse);
*/
mutateFeedItemSetLinks(input: MutateFeedItemSetLinksRequest, options?: RpcOptions): UnaryCall<MutateFeedItemSetLinksRequest, MutateFeedItemSetLinksResponse>;
}