using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// JfExportInstBillModel Data Structure.
///
[Serializable]
public class JfExportInstBillModel : AopObject
{
///
/// 账单金额,单位为:RMB元。
///
[JsonProperty("amount")]
public string Amount { get; set; }
///
/// 余额,单位为:RMB元。
///
[JsonProperty("balance")]
public string Balance { get; set; }
///
/// 账期
///
[JsonProperty("bill_date")]
public string BillDate { get; set; }
///
/// 滞纳金,单位为:RMB元。
///
[JsonProperty("bill_fines")]
public string BillFines { get; set; }
///
/// 户号
///
[JsonProperty("bill_key")]
public string BillKey { get; set; }
///
/// 拓展字段,json串(key-value对)
///
[JsonProperty("extend_field")]
public string ExtendField { get; set; }
///
/// 机构流水号
///
[JsonProperty("inst_bill_no")]
public string InstBillNo { get; set; }
///
/// 账单拥有者姓名
///
[JsonProperty("owner_name")]
public string OwnerName { get; set; }
///
/// 唯一标识,每次查询均保证唯一性,但是不保证幂等性
///
[JsonProperty("uniq_id")]
public string UniqId { get; set; }
}
}