NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppInstserviceDeduct...

79 lines
2.2 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>
/// AlipayEbppInstserviceDeductSignModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInstserviceDeductSignModel : AopObject
{
/// <summary>
/// 签约来源渠道,接入时与代扣约定
/// </summary>
[XmlElement("agent_channel")]
public string AgentChannel { get; set; }
/// <summary>
/// 签约来源渠道编码,接入时与代扣约定
/// </summary>
[XmlElement("agent_code")]
public string AgentCode { get; set; }
/// <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>
/// PREPAID预付费POSTPAID后付费
/// </summary>
[XmlElement("pay_mode")]
public string PayMode { get; set; }
/// <summary>
/// 二级业务类型(例如话费,流量,水费,电费)
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 核身id
/// </summary>
[XmlElement("verify_id")]
public string VerifyId { get; set; }
}
}