using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// KoubeiItemStateResponse.
///
public class KoubeiItemStateResponse : AopResponse
{
///
/// 口碑体系内部商品的唯一标识
///
[JsonProperty("item_id")]
public string ItemId { get; set; }
///
/// 即入参中的request_id
///
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}