How to convert String to long in logstash

Example from my log i am getting response time as String in ES i want to convert it to long

mutate{
convert => {"respnseTime" => "long"}
}

it throws me an error

Long is not a valid conversion datatype. See here for the available options.

Thanks for the reply