public static Order ReadFromJObject(JObject o) { if (o == null) return null; var r = new Order() { Pair = BtcePairHelper.FromString(o.Value<string>("pair")), Type = TradeTypeHelper.FromString(o.Value<string>("type")), Amount = o.Value<decimal>("amount"), Rate = o.Value<decimal>("rate"), TimestampCreated = o.Value<UInt32>("timestamp_created"), Status = o.Value<int>("status") }; return r; }