open System
open Newtonsoft.Json.Linq
type Success = {
``odata.context``: string;
Value: string; }
let json = "{\"@odata.context\":\"OData\",\"Value\":\"token\"}"
let p = JObject.Parse(json)
{``odata.context`` = p.["@odata.context"] |> string ;Value = p.["Value"] |> string}
|> printfn "%A"