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

85 lines
2.3 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>
/// AlipayEbppInstserviceDeductConfirmModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEbppInstserviceDeductConfirmModel : AopObject
{
/// <summary>
/// 签约ID
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { 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("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 户号签约失败原因
/// </summary>
[XmlElement("error_message")]
public string ErrorMessage { 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("out_agreement_id")]
public string OutAgreementId { get; set; }
/// <summary>
/// 流程id
/// </summary>
[XmlElement("process_id")]
public string ProcessId { get; set; }
/// <summary>
/// true代表本次操作成功 false代表本次操作失败
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
/// <summary>
/// 二级业务类型(例如话费,流量,水费,电费)
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}