import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomerAssetsResponse } from "./customer_asset_service"; import type { MutateCustomerAssetsRequest } from "./customer_asset_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage customer assets. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerAssetService */ export interface ICustomerAssetServiceClient { /** * Creates, updates, or removes customer assets. Operation statuses are * returned. * * List of thrown errors: * [AssetLinkError]() * [AuthenticationError]() * [AuthorizationError]() * [FieldError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateCustomerAssets(google.ads.googleads.v11.services.MutateCustomerAssetsRequest) returns (google.ads.googleads.v11.services.MutateCustomerAssetsResponse); */ mutateCustomerAssets(input: MutateCustomerAssetsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage customer assets. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerAssetService */ export declare class CustomerAssetServiceClient implements ICustomerAssetServiceClient, 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 assets. Operation statuses are * returned. * * List of thrown errors: * [AssetLinkError]() * [AuthenticationError]() * [AuthorizationError]() * [FieldError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateCustomerAssets(google.ads.googleads.v11.services.MutateCustomerAssetsRequest) returns (google.ads.googleads.v11.services.MutateCustomerAssetsResponse); */ mutateCustomerAssets(input: MutateCustomerAssetsRequest, options?: RpcOptions): UnaryCall; }