NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarFuellingProdu...

40 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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