NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInstserviceIdenti...

55 lines
1.5 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>
/// AlipayEbppInstserviceIdentityInitializeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInstserviceIdentityInitializeModel : AopObject
{
/// <summary>
/// 户号(缴费场景是户号,话费场景是手机号)
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型(例如通信,缴费,还款)
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 代扣产品码(由技术同学分配)
/// </summary>
[XmlElement("ededuct_product_code")]
public string EdeductProductCode { get; set; }
/// <summary>
/// 扩展字段JSON格式
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 机构ID支付宝侧分配
/// </summary>
[XmlElement("inst_id")]
public string InstId { get; set; }
/// <summary>
/// 二级业务类型(例如话费,流量,水费,电费)
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}