import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateBiddingStrategiesResponse } from "./bidding_strategy_service"; import type { MutateBiddingStrategiesRequest } from "./bidding_strategy_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage bidding strategies. * * @generated from protobuf service google.ads.googleads.v11.services.BiddingStrategyService */ export interface IBiddingStrategyServiceClient { /** * Creates, updates, or removes bidding strategies. Operation statuses are * returned. * * List of thrown errors: * [AdxError]() * [AuthenticationError]() * [AuthorizationError]() * [BiddingError]() * [BiddingStrategyError]() * [ContextError]() * [DatabaseError]() * [DateError]() * [DistinctError]() * [FieldError]() * [FieldMaskError]() * [HeaderError]() * [IdError]() * [InternalError]() * [MutateError]() * [NewResourceCreationError]() * [NotEmptyError]() * [NullError]() * [OperationAccessDeniedError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateBiddingStrategies(google.ads.googleads.v11.services.MutateBiddingStrategiesRequest) returns (google.ads.googleads.v11.services.MutateBiddingStrategiesResponse); */ mutateBiddingStrategies(input: MutateBiddingStrategiesRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage bidding strategies. * * @generated from protobuf service google.ads.googleads.v11.services.BiddingStrategyService */ export declare class BiddingStrategyServiceClient implements IBiddingStrategyServiceClient, 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 bidding strategies. Operation statuses are * returned. * * List of thrown errors: * [AdxError]() * [AuthenticationError]() * [AuthorizationError]() * [BiddingError]() * [BiddingStrategyError]() * [ContextError]() * [DatabaseError]() * [DateError]() * [DistinctError]() * [FieldError]() * [FieldMaskError]() * [HeaderError]() * [IdError]() * [InternalError]() * [MutateError]() * [NewResourceCreationError]() * [NotEmptyError]() * [NullError]() * [OperationAccessDeniedError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateBiddingStrategies(google.ads.googleads.v11.services.MutateBiddingStrategiesRequest) returns (google.ads.googleads.v11.services.MutateBiddingStrategiesResponse); */ mutateBiddingStrategies(input: MutateBiddingStrategiesRequest, options?: RpcOptions): UnaryCall; }