lockUser method
Lock a user
Lock an existing user and change the state 'locked'. The user will not be able to log in anymore. Use lock user when the user should temporarily not be able to log in because of an event that happened (wrong password, etc.)
The endpoint returns an error if the user is already in the state 'locked'.
Implementation
$grpc.ResponseFuture<$0.LockUserResponse> lockUser(
$0.LockUserRequest request, {
$grpc.CallOptions? options,
}) {
return $createUnaryCall(_$lockUser, request, options: options);
}