using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayFlashsalesStockSyncUpdateResponse. /// public class AlipayFlashsalesStockSyncUpdateResponse : AopResponse { /// /// 成功时返回的业务参数信息。 /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 当更新库存不成功时,错误码 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 成功标识 /// [XmlElement("success")] public string Success { get; set; } } }