using System.Collections.Generic;
public static void Main()
var response = new OrderResponse();
response.StringProp = "the string";
response.DictProp = new Dictionary<string, object>
Console.WriteLine(JsonConvert.SerializeObject(response, Formatting.Indented));
public string StringProp { get; set; }
public Dictionary<string, object> DictProp { get; set; }