eBay 交易 API LeaveFeedbackCall
我正在尝试通过 eBay Trading API LeaveFeedbackCall
设置卖家反馈。我正在使用 .NET SDK,但在分配反馈详细信息时遇到困难。在 API 描述中,这是一个数组 SelerItemRatingDetailsArray
,其中包含 ItemRatingDetails
,其中包含两个项目:Rating (Int)
和 RatingDetail (FeedbackRatingDetailCodeType)< /代码>。我正在使用的引发错误的代码行如下。
apicall.SellerItemRatingDetailArrayList.Item("Communication").Rating = iCommunication.
iCommunication
是一个整数变量,其值介于 0 和 4 之间。
如有任何帮助,我们将不胜感激。
I am attempting to set seller feedback through the eBay Trading API, LeaveFeedbackCall
. I am using the .NET SDK and am having difficulty assigning the feedback details. In the API description this is an array SelerItemRatingDetailsArray
that holds ItemRatingDetails
with two items, Rating (Int)
and RatingDetail (FeedbackRatingDetailCodeType)
. The line of code I am using that is throwing an error follows.
apicall.SellerItemRatingDetailArrayList.Item("Communication").Rating = iCommunication.
iCommunication
is an integer variable holding a value between 0 and 4.
Any assistance would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你需要这个代码。
C# 语法。
基本上,您不能像您尝试的那样使用 SellerItemRatingDetailArrayList。
链接:详细卖家评级和LeaveFeedbackCallMembers
I think you need this code instead.
C# syntax.
Basically you can not use the SellerItemRatingDetailArrayList like you were trying to.
Link: DetailedSellerRatings and LeaveFeedbackCallMembers