using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayEbppSubscribeUploadResponse.
///
public class AlipayEbppSubscribeUploadResponse : AopResponse
{
///
/// 出账机构简称如杭州水务HZWATEr
///
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
///
/// 业务类型,如缴费JF
///
[XmlElement("order_type")]
public string OrderType { get; set; }
///
/// 子业务类型如水费WATER
///
[XmlElement("sub_order_type")]
public string SubOrderType { get; set; }
}
}