import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateLabelsResponse } from "./label_service"; import type { MutateLabelsRequest } from "./label_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage labels. * * @generated from protobuf service google.ads.googleads.v11.services.LabelService */ export interface ILabelServiceClient { /** * Creates, updates, or removes labels. Operation statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [DatabaseError]() * [DateError]() * [DistinctError]() * [FieldError]() * [FieldMaskError]() * [HeaderError]() * [IdError]() * [InternalError]() * [LabelError]() * [MutateError]() * [NewResourceCreationError]() * [NotEmptyError]() * [NullError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [ResourceCountLimitExceededError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateLabels(google.ads.googleads.v11.services.MutateLabelsRequest) returns (google.ads.googleads.v11.services.MutateLabelsResponse); */ mutateLabels(input: MutateLabelsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage labels. * * @generated from protobuf service google.ads.googleads.v11.services.LabelService */ export declare class LabelServiceClient implements ILabelServiceClient, 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 labels. Operation statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [DatabaseError]() * [DateError]() * [DistinctError]() * [FieldError]() * [FieldMaskError]() * [HeaderError]() * [IdError]() * [InternalError]() * [LabelError]() * [MutateError]() * [NewResourceCreationError]() * [NotEmptyError]() * [NullError]() * [OperatorError]() * [QuotaError]() * [RangeError]() * [RequestError]() * [ResourceCountLimitExceededError]() * [SizeLimitError]() * [StringFormatError]() * [StringLengthError]() * * @generated from protobuf rpc: MutateLabels(google.ads.googleads.v11.services.MutateLabelsRequest) returns (google.ads.googleads.v11.services.MutateLabelsResponse); */ mutateLabels(input: MutateLabelsRequest, options?: RpcOptions): UnaryCall; }