using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEbppJfexportInstbillQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppJfexportInstbillQueryModel : AopObject
{
///
/// 账期
///
[JsonProperty("bill_date")]
public string BillDate { get; set; }
///
/// 户号
///
[JsonProperty("bill_key")]
public string BillKey { get; set; }
///
/// 业务类型英文名称 ,固定传JF,表示缴费
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 出账机构英文简称
///
[JsonProperty("charge_inst")]
public string ChargeInst { get; set; }
///
/// 拓展字段,json串(key-value对)
///
[JsonProperty("extend_field")]
public string ExtendField { get; set; }
///
/// 账单拥有者姓名
///
[JsonProperty("owner_name")]
public string OwnerName { get; set; }
///
/// 子业务类型英文名称,ELECTRIC-电费,WATER-水费,GAS-燃气费
///
[JsonProperty("sub_biz_type")]
public string SubBizType { get; set; }
}
}