Blog

Select the Correct Model class for this json object:

{“cartItem”:{“sku”:”WS12-XS-Orange”,”product_option”:{“custom_options”:[]}}}

Answer A
class ProductOption { List custom_options { get; set; } }
class CartItem { string sku { get; set; } ProductOption product_option { get; set; } }
class Root { CartItem cartItem { get; set; } }

Answer B
class custom_options { List custom_options { get; set; } }
class cartItem { string sku { get; set; } product_option product_option { get; set; } }
class Root { cartItem cartItem { get; set; }

Answer C
class ProductOption { List custom_options { get; set; } }
class CartItem { string sku { get; set; } ProductOption product_option { get; set; } }

Answer D
Incorrect Json