While playing around with eBay .NET SDK, I ran into an issue. I couldn't find some fields I heeded to, such as EAN, Model, Brand, ASIN
and especially MPN
.
A class I use as an info class is eBay.Service.Core.Soap.ItemType
. To get the information about a product I do
GetItemCall call = new GetItemCall(_context);
call .DetailLevelList.Add(DetailLevelCodeType.ReturnAll);
item = apicall.GetItem(itemID.ToString());
How can I get these fields?