import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomizerAttributesResponse } from "./customizer_attribute_service"; import type { MutateCustomizerAttributesRequest } from "./customizer_attribute_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage customizer attribute * * @generated from protobuf service google.ads.googleads.v11.services.CustomizerAttributeService */ export interface ICustomizerAttributeServiceClient { /** * Creates, updates or removes customizer attributes. Operation statuses are * returned. * * @generated from protobuf rpc: MutateCustomizerAttributes(google.ads.googleads.v11.services.MutateCustomizerAttributesRequest) returns (google.ads.googleads.v11.services.MutateCustomizerAttributesResponse); */ mutateCustomizerAttributes(input: MutateCustomizerAttributesRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage customizer attribute * * @generated from protobuf service google.ads.googleads.v11.services.CustomizerAttributeService */ export declare class CustomizerAttributeServiceClient implements ICustomizerAttributeServiceClient, 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 customizer attributes. Operation statuses are * returned. * * @generated from protobuf rpc: MutateCustomizerAttributes(google.ads.googleads.v11.services.MutateCustomizerAttributesRequest) returns (google.ads.googleads.v11.services.MutateCustomizerAttributesResponse); */ mutateCustomizerAttributes(input: MutateCustomizerAttributesRequest, options?: RpcOptions): UnaryCall; }