public static void Main()
'neighbourhood': 'Centro'
'carrierName': 'Transportadora'
'enablePrePicking': false,
'sku': '03.64.0005_11_10',
'sku': '18.06.0220_48_2',
'carrierName': 'Transportadora'
'status': 'SHIPPING_READY',
'enablePrePicking': true,
'sku': '18.04.1465_01_3',
'sku': '18.16.0630_13_10',
'createdAt': '2019-06-08T21:41:12.000Z',
'updatedAt': '2019-06-08T21:41:12.000Z'
var myCodec = new Oss.DCodec.JsonCodec();
dynamic myData = myCodec.Decode(json);
if (myData.Fulfillments.ContainsKey("F1"))
foreach (var item in myData.Fulfillments.F1.Items as Oss.DCodec.DValue)
Item pocoItem = item.ToObject<Item>();
Console.WriteLine(pocoItem.sku +":" + pocoItem.quantity);
public string sku { get; set; }
public int quantity { get; set; }
public string stockType { get; set; }
public int orderedQuantity { get; set; }
public int returnedQuantity { get; set; }
public int canceledQuantity { get; set; }
public string itemType { get; set; }
public bool presale { get; set; }
public bool enablePicking { get; set; }