在使用 eBay .NET SDK 时,我遇到了一个问题。我找不到我关注的一些字段,例如EAN, Model, Brand, ASIN
and 特别是MPN
.
我用作信息类的类是eBay.Service.Core.Soap.ItemType
. 要获取有关我所做的产品的信息
GetItemCall call = new GetItemCall(_context);
call .DetailLevelList.Add(DetailLevelCodeType.ReturnAll);
item = apicall.GetItem(itemID.ToString());
我怎样才能得到这些字段?