using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoMycarFuellingProductModifyModel Data Structure. /// [Serializable] public class AlipayEcoMycarFuellingProductModifyModel : AopObject { /// /// 外部门店编号系统唯一,该值添加后不可修改,与字段shop_id不能同时为空 /// [XmlElement("out_shop_id")] public string OutShopId { get; set; } /// /// 商品信息集合,JSON格式,注意,该参数将覆盖原有已经设置的数据,即如想除去某一商品,去除后重新设置该字段值。 /// [XmlArray("product")] [XmlArrayItem("product")] public List Product { get; set; } /// /// 促销信息集合,JSON格式 /// [XmlArray("sale")] [XmlArrayItem("sale")] public List Sale { get; set; } /// /// 车主平台内部门店编号,系统唯一,与字段out_shop_id不能同时为空 /// [XmlElement("shop_id")] public string ShopId { get; set; } } }