import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCampaignSharedSetsResponse } from "./campaign_shared_set_service"; import type { MutateCampaignSharedSetsRequest } from "./campaign_shared_set_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage campaign shared sets. * * @generated from protobuf service google.ads.googleads.v11.services.CampaignSharedSetService */ export interface ICampaignSharedSetServiceClient { /** * Creates or removes campaign shared sets. Operation statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CampaignSharedSetError]() * [ContextError]() * [DatabaseError]() * [DateError]() * [DistinctError]() * [FieldError]() * [HeaderError]() * [IdError]() * [InternalError]() * [MutateError]() * [NewResourceCreationError]() * [NotEmptyError]() * [NullError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateCampaignSharedSets(google.ads.googleads.v11.services.MutateCampaignSharedSetsRequest) returns (google.ads.googleads.v11.services.MutateCampaignSharedSetsResponse); */ mutateCampaignSharedSets(input: MutateCampaignSharedSetsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage campaign shared sets. * * @generated from protobuf service google.ads.googleads.v11.services.CampaignSharedSetService */ export declare class CampaignSharedSetServiceClient implements ICampaignSharedSetServiceClient, 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 or removes campaign shared sets. Operation statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CampaignSharedSetError]() * [ContextError]() * [DatabaseError]() * [DateError]() * [DistinctError]() * [FieldError]() * [HeaderError]() * [IdError]() * [InternalError]() * [MutateError]() * [NewResourceCreationError]() * [NotEmptyError]() * [NullError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateCampaignSharedSets(google.ads.googleads.v11.services.MutateCampaignSharedSetsRequest) returns (google.ads.googleads.v11.services.MutateCampaignSharedSetsResponse); */ mutateCampaignSharedSets(input: MutateCampaignSharedSetsRequest, options?: RpcOptions): UnaryCall; }