eBay 交易 API LeaveFeedbackCall

发布于 2024-12-07 05:53:55 字数 515 浏览 0 评论 0原文

我正在尝试通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉酒的小男人 2024-12-14 05:53:55

我认为你需要这个代码。

ItemRatingDetailsType itemRateing = new ItemRatingDetailsType();
itemRateing.RatingDetail = FeedbackRatingDetailCodeType.Communication;
itemRateing.Rateing = iCommunication;
apicall.SellerItemRatingDetailArrayList.Add( itemRateing);

C# 语法。
基本上,您不能像您尝试的那样使用 SellerItemRatingDetailArrayList。

链接:详细卖家评级LeaveFeedbackCallMembers

I think you need this code instead.

ItemRatingDetailsType itemRateing = new ItemRatingDetailsType();
itemRateing.RatingDetail = FeedbackRatingDetailCodeType.Communication;
itemRateing.Rateing = iCommunication;
apicall.SellerItemRatingDetailArrayList.Add( itemRateing);

C# syntax.
Basically you can not use the SellerItemRatingDetailArrayList like you were trying to.

Link: DetailedSellerRatings and LeaveFeedbackCallMembers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文