using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppInstserviceDeductConfirmModel Data Structure.
///
[Serializable]
public class AlipayEbppInstserviceDeductConfirmModel : AopObject
{
///
/// 签约ID
///
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
///
/// 户号(缴费场景是户号,话费场景是手机号)
///
[XmlElement("bill_key")]
public string BillKey { get; set; }
///
/// 业务类型(例如通信,缴费,还款)
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 错误编码
///
[XmlElement("error_code")]
public string ErrorCode { get; set; }
///
/// 户号签约失败原因
///
[XmlElement("error_message")]
public string ErrorMessage { get; set; }
///
/// 扩展字段(JSON格式)
///
[XmlElement("extend_field")]
public string ExtendField { get; set; }
///
/// 机构ID(支付宝侧分配)
///
[XmlElement("inst_id")]
public string InstId { get; set; }
///
/// 外部协议号
///
[XmlElement("out_agreement_id")]
public string OutAgreementId { get; set; }
///
/// 流程id
///
[XmlElement("process_id")]
public string ProcessId { get; set; }
///
/// true代表本次操作成功 false代表本次操作失败
///
[XmlElement("result")]
public string Result { get; set; }
///
/// 二级业务类型(例如话费,流量,水费,电费)
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}