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

61 lines
1.7 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>
/// AlipayEbppInstserviceDeductQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInstserviceDeductQueryModel : AopObject
{
/// <summary>
/// 户号(缴费场景是户号,话费场景是手机号)
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 业务类型(例如通信,缴费,还款)
/// </summary>
[XmlElement("biz_type")]
public string BizType { 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>
/// sign为查询签约流程unsign为查询解约流程
/// </summary>
[XmlElement("operation_type")]
public string OperationType { get; set; }
/// <summary>
/// 流程ID
/// </summary>
[XmlElement("process_id")]
public string ProcessId { get; set; }
/// <summary>
/// 二级业务类型(例如话费,流量,水费,电费)
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}