using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayOfflineMarketItemModifyResponse. /// public class AlipayOfflineMarketItemModifyResponse : AopResponse { /// /// 口碑体系内部商品的唯一标识 /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 支持英文字母和数字,由开发者自行定义(不允许重复),在商品notify消息中也会带有该参数,以此标明本次notify消息是对哪个请求的回应 /// [XmlElement("request_id")] public string RequestId { get; set; } } }