import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomerUserAccessResponse } from "./customer_user_access_service"; import type { MutateCustomerUserAccessRequest } from "./customer_user_access_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * This service manages the permissions of a user on a given customer. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerUserAccessService */ export interface ICustomerUserAccessServiceClient { /** * Updates, removes permission of a user on a given customer. Operation * statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CustomerUserAccessError]() * [FieldMaskError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateCustomerUserAccess(google.ads.googleads.v11.services.MutateCustomerUserAccessRequest) returns (google.ads.googleads.v11.services.MutateCustomerUserAccessResponse); */ mutateCustomerUserAccess(input: MutateCustomerUserAccessRequest, options?: RpcOptions): UnaryCall; } /** * This service manages the permissions of a user on a given customer. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerUserAccessService */ export declare class CustomerUserAccessServiceClient implements ICustomerUserAccessServiceClient, ServiceInfo { private readonly _transport; typeName: string; methods: import("@protobuf-ts/runtime-rpc").MethodInfo[]; options: { [extensionName: string]: import("@protobuf-ts/runtime").JsonValue; }; constructor(_transport: RpcTransport); /** * Updates, removes permission of a user on a given customer. Operation * statuses are returned. * * List of thrown errors: * [AuthenticationError]() * [AuthorizationError]() * [CustomerUserAccessError]() * [FieldMaskError]() * [HeaderError]() * [InternalError]() * [MutateError]() * [QuotaError]() * [RequestError]() * * @generated from protobuf rpc: MutateCustomerUserAccess(google.ads.googleads.v11.services.MutateCustomerUserAccessRequest) returns (google.ads.googleads.v11.services.MutateCustomerUserAccessResponse); */ mutateCustomerUserAccess(input: MutateCustomerUserAccessRequest, options?: RpcOptions): UnaryCall; }