import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { UploadConversionAdjustmentsResponse } from "./conversion_adjustment_upload_service"; import type { UploadConversionAdjustmentsRequest } from "./conversion_adjustment_upload_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to upload conversion adjustments. * * @generated from protobuf service google.ads.googleads.v11.services.ConversionAdjustmentUploadService */ export interface IConversionAdjustmentUploadServiceClient { /** * Processes the given conversion adjustments. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [HeaderError]() * [InternalError]() * [PartialFailureError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: UploadConversionAdjustments(google.ads.googleads.v11.services.UploadConversionAdjustmentsRequest) returns (google.ads.googleads.v11.services.UploadConversionAdjustmentsResponse); */ uploadConversionAdjustments(input: UploadConversionAdjustmentsRequest, options?: RpcOptions): UnaryCall; } /** * Service to upload conversion adjustments. * * @generated from protobuf service google.ads.googleads.v11.services.ConversionAdjustmentUploadService */ export declare class ConversionAdjustmentUploadServiceClient implements IConversionAdjustmentUploadServiceClient, ServiceInfo { private readonly _transport; typeName: string; methods: import("@protobuf-ts/runtime-rpc").MethodInfo[]; options: { [extensionName: string]: import("@protobuf-ts/runtime").JsonValue; }; constructor(_transport: RpcTransport); /** * Processes the given conversion adjustments. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [HeaderError]() * [InternalError]() * [PartialFailureError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: UploadConversionAdjustments(google.ads.googleads.v11.services.UploadConversionAdjustmentsRequest) returns (google.ads.googleads.v11.services.UploadConversionAdjustmentsResponse); */ uploadConversionAdjustments(input: UploadConversionAdjustmentsRequest, options?: RpcOptions): UnaryCall; }