aeson-1.3.0.0: examples/Twitter/Options.hs
module Twitter.Options (module Twitter.Options) where
import Data.Aeson
twitterOptions :: Options
twitterOptions = defaultOptions
{ fieldLabelModifier = \x -> case x of
"id_" -> "id"
_ -> x
}