using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// QueryInstBillInfo Data Structure. /// [Serializable] public class QueryInstBillInfo : AopObject { /// /// 账单金额 /// [JsonProperty("amount")] public string Amount { get; set; } /// /// 余额 /// [JsonProperty("balance")] public string Balance { get; set; } /// /// 账单日期 /// [JsonProperty("bill_date")] public string BillDate { get; set; } /// /// 明细说明 /// [JsonProperty("bill_detail")] public List BillDetail { get; set; } /// /// 滞纳金 /// [JsonProperty("bill_fines")] public string BillFines { get; set; } /// /// 账单流水 /// [JsonProperty("bill_key")] public string BillKey { get; set; } /// /// 户名 /// [JsonProperty("bill_user_name")] public string BillUserName { get; set; } /// /// JDBXINHUI /// [JsonProperty("charge_inst")] public string ChargeInst { get; set; } /// /// 查询欠费单的惟一标识 /// [JsonProperty("charge_uniq_id")] public string ChargeUniqId { get; set; } /// /// 销账机构 /// [JsonProperty("chargeoff_inst")] public string ChargeoffInst { get; set; } /// /// 销账机构给出账机构分配的ID /// [JsonProperty("company_id")] public string CompanyId { get; set; } /// /// 扩展属性 /// [JsonProperty("extend")] public string Extend { get; set; } /// /// 业务类型 /// [JsonProperty("order_type")] public string OrderType { get; set; } /// /// 外部流水号 /// [JsonProperty("out_id")] public string OutId { get; set; } /// /// 错误信息 /// [JsonProperty("return_message")] public string ReturnMessage { get; set; } /// /// 子业务类型 /// [JsonProperty("sub_order_type")] public string SubOrderType { get; set; } } }