UNPKG

google-ads-api-client

Version:

A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.

58 lines (57 loc) 2.64 kB
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<UploadConversionAdjustmentsRequest, UploadConversionAdjustmentsResponse>; } /** * 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<any, any>[]; 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<UploadConversionAdjustmentsRequest, UploadConversionAdjustmentsResponse>; }