NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPayAppMarketingConsul...

49 lines
1.7 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayPayAppMarketingConsultModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPayAppMarketingConsultModel : AopObject
{
/// <summary>
/// 业务场景,用于区分商户具体的咨场景,示例: OPENING_PAGE开屏页营销咨询 ORDER_PAGE下单页营销咨询
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 手机号密文,若传了手机号明文,则本字段可不传
/// </summary>
[XmlElement("encrypted_mobile")]
public string EncryptedMobile { get; set; }
/// <summary>
/// 手机号明文,若传了手机号密文,则本字段可不传
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 商户订单号,64个字符以内、可包含字母、数字、下划线需保证在商户端不重复
/// </summary>
[XmlElement("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 订单总金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
/// </summary>
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
/// <summary>
/// 不参与优惠计算的金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
/// </summary>
[XmlElement("undiscountable_amount")]
public string UndiscountableAmount { get; set; }
}
}