NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTradeApplyMod...

67 lines
2.0 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceTradeApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTradeApplyModel : AopObject
{
/// <summary>
/// 订单费用详情,用于在订单确认页面展示
/// </summary>
[XmlElement("amount_detail")]
public string AmountDetail { get; set; }
/// <summary>
/// 接口请求渠道编码,由支付宝提供
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 接口版本号
/// </summary>
[XmlElement("interface_version")]
public string InterfaceVersion { get; set; }
/// <summary>
/// 用于标识操作模型,由支付宝配置提供
/// </summary>
[XmlElement("op_code")]
public string OpCode { get; set; }
/// <summary>
/// 场景的数据表示. json 数组格式,根据场景不同的模型传入不同参数,由支付宝负责提供参数集合
/// </summary>
[XmlElement("order_detail")]
public string OrderDetail { get; set; }
/// <summary>
/// 用于标识数据模型,由支付宝配置提供
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 场景覆盖的目标人群标识支持支付宝userId、身份证号、支付宝登录号、支付宝绑定手机号
/// </summary>
[XmlElement("target_id")]
public string TargetId { get; set; }
/// <summary>
/// 场景覆盖人群id类型
/// </summary>
[XmlElement("target_id_type")]
public string TargetIdType { get; set; }
/// <summary>
/// 交易请求参数
/// </summary>
[XmlElement("trade_apply_params")]
public TradeApplyParams TradeApplyParams { get; set; }
}
}