import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateFeedItemSetsResponse } from "./feed_item_set_service"; import type { MutateFeedItemSetsRequest } from "./feed_item_set_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage feed Item Set * * @generated from protobuf service google.ads.googleads.v11.services.FeedItemSetService */ export interface IFeedItemSetServiceClient { /** * Creates, updates or removes feed item sets. Operation statuses are * returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateFeedItemSets(google.ads.googleads.v11.services.MutateFeedItemSetsRequest) returns (google.ads.googleads.v11.services.MutateFeedItemSetsResponse); */ mutateFeedItemSets(input: MutateFeedItemSetsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage feed Item Set * * @generated from protobuf service google.ads.googleads.v11.services.FeedItemSetService */ export declare class FeedItemSetServiceClient implements IFeedItemSetServiceClient, ServiceInfo { private readonly _transport; typeName: string; methods: import("@protobuf-ts/runtime-rpc").MethodInfo[]; options: { [extensionName: string]: import("@protobuf-ts/runtime").JsonValue; }; constructor(_transport: RpcTransport); /** * Creates, updates or removes feed item sets. Operation statuses are * returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateFeedItemSets(google.ads.googleads.v11.services.MutateFeedItemSetsRequest) returns (google.ads.googleads.v11.services.MutateFeedItemSetsResponse); */ mutateFeedItemSets(input: MutateFeedItemSetsRequest, options?: RpcOptions): UnaryCall; }