import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomInterestsResponse } from "./custom_interest_service"; import type { MutateCustomInterestsRequest } from "./custom_interest_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage custom interests. * * @generated from protobuf service google.ads.googleads.v11.services.CustomInterestService */ export interface ICustomInterestServiceClient { /** * Creates or updates custom interests. Operation statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CriterionError]() * [CustomInterestError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [PolicyViolationError]() * [QuotaError]() * [RequestError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateCustomInterests(google.ads.googleads.v11.services.MutateCustomInterestsRequest) returns (google.ads.googleads.v11.services.MutateCustomInterestsResponse); */ mutateCustomInterests(input: MutateCustomInterestsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage custom interests. * * @generated from protobuf service google.ads.googleads.v11.services.CustomInterestService */ export declare class CustomInterestServiceClient implements ICustomInterestServiceClient, 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 or updates custom interests. Operation statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CriterionError]() * [CustomInterestError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [PolicyViolationError]() * [QuotaError]() * [RequestError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateCustomInterests(google.ads.googleads.v11.services.MutateCustomInterestsRequest) returns (google.ads.googleads.v11.services.MutateCustomInterestsResponse); */ mutateCustomInterests(input: MutateCustomInterestsRequest, options?: RpcOptions): UnaryCall; }