using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppInstserviceDeductQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppInstserviceDeductQueryModel : AopObject
{
///
/// 户号(缴费场景是户号,话费场景是手机号)
///
[XmlElement("bill_key")]
public string BillKey { get; set; }
///
/// 业务类型(例如通信,缴费,还款)
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 扩展字段(JSON格式)
///
[XmlElement("extend_field")]
public string ExtendField { get; set; }
///
/// 机构ID(支付宝侧分配)
///
[XmlElement("inst_id")]
public string InstId { get; set; }
///
/// sign为查询签约流程,unsign为查询解约流程
///
[XmlElement("operation_type")]
public string OperationType { get; set; }
///
/// 流程ID
///
[XmlElement("process_id")]
public string ProcessId { get; set; }
///
/// 二级业务类型(例如话费,流量,水费,电费)
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}