Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/KoubeiItemModifyResponse.cs

22 lines
535 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiItemModifyResponse.
/// </summary>
public class KoubeiItemModifyResponse : AopResponse
{
/// <summary>
/// 口碑体系内部商品的唯一标识后续的增删改查接口都使用该ID作为主键
/// </summary>
[JsonProperty("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 即入参中的request_id
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}