using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMerchantItemFileUploadResponse. /// public class AlipayMerchantItemFileUploadResponse : AopResponse { /// /// 文件在商品中心的素材标识(素材ID长期有效) /// [XmlElement("material_id")] public string MaterialId { get; set; } /// /// 文件在商品中心的素材标示,创建/更新商品时使用 /// [XmlElement("material_key")] public string MaterialKey { get; set; } } }