NewGaoKaoApi/PaymentSDK/AliPay/Domain/IntelligentGuideTradeInfo.cs

33 lines
897 B
C#
Raw Permalink 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>
/// IntelligentGuideTradeInfo Data Structure.
/// </summary>
[Serializable]
public class IntelligentGuideTradeInfo : AopObject
{
/// <summary>
/// 商户在口碑侧的门店id校验纯数字28位
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 商户门店名称
/// </summary>
[XmlElement("shop_name")]
public string ShopName { get; set; }
/// <summary>
/// 单个门店下的具体交易信息列表
/// </summary>
[XmlArray("trade_details")]
[XmlArrayItem("intelligent_guide_trade_detail")]
public List<IntelligentGuideTradeDetail> TradeDetails { get; set; }
}
}