import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateAdGroupAssetsResponse } from "./ad_group_asset_service"; import type { MutateAdGroupAssetsRequest } from "./ad_group_asset_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage ad group assets. * * @generated from protobuf service google.ads.googleads.v11.services.AdGroupAssetService */ export interface IAdGroupAssetServiceClient { /** * Creates, updates, or removes ad group assets. Operation statuses are * returned. * * List of thrown errors: * [AssetLinkError]() * [AuthenticationError]() * [AuthorizationError]() * [ContextError]() * [FieldError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [NotAllowlistedError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateAdGroupAssets(google.ads.googleads.v11.services.MutateAdGroupAssetsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupAssetsResponse); */ mutateAdGroupAssets(input: MutateAdGroupAssetsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage ad group assets. * * @generated from protobuf service google.ads.googleads.v11.services.AdGroupAssetService */ export declare class AdGroupAssetServiceClient implements IAdGroupAssetServiceClient, 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 ad group assets. Operation statuses are * returned. * * List of thrown errors: * [AssetLinkError]() * [AuthenticationError]() * [AuthorizationError]() * [ContextError]() * [FieldError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [NotAllowlistedError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateAdGroupAssets(google.ads.googleads.v11.services.MutateAdGroupAssetsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupAssetsResponse); */ mutateAdGroupAssets(input: MutateAdGroupAssetsRequest, options?: RpcOptions): UnaryCall; }