import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomerFeedsResponse } from "./customer_feed_service"; import type { MutateCustomerFeedsRequest } from "./customer_feed_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage customer feeds. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerFeedService */ export interface ICustomerFeedServiceClient { /** * Creates, updates, or removes customer feeds. Operation statuses are * returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CollectionSizeError]() * [CustomerFeedError]() * [DatabaseError]() * [DistinctError]() * [FieldError]() * [FieldMaskError]() * [FunctionError]() * [FunctionParsingError]() * [HeaderError]() * [IdError]() * [InternalError]() * [MutateError]() * [NotEmptyError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateCustomerFeeds(google.ads.googleads.v11.services.MutateCustomerFeedsRequest) returns (google.ads.googleads.v11.services.MutateCustomerFeedsResponse); */ mutateCustomerFeeds(input: MutateCustomerFeedsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage customer feeds. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerFeedService */ export declare class CustomerFeedServiceClient implements ICustomerFeedServiceClient, 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 customer feeds. Operation statuses are * returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CollectionSizeError]() * [CustomerFeedError]() * [DatabaseError]() * [DistinctError]() * [FieldError]() * [FieldMaskError]() * [FunctionError]() * [FunctionParsingError]() * [HeaderError]() * [IdError]() * [InternalError]() * [MutateError]() * [NotEmptyError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateCustomerFeeds(google.ads.googleads.v11.services.MutateCustomerFeedsRequest) returns (google.ads.googleads.v11.services.MutateCustomerFeedsResponse); */ mutateCustomerFeeds(input: MutateCustomerFeedsRequest, options?: RpcOptions): UnaryCall; }