using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// DishonestyDetailInfo Data Structure.
///
[Serializable]
public class DishonestyDetailInfo : AopObject
{
///
/// 被执行人行为具体情况
///
[JsonProperty("behavior")]
public string Behavior { get; set; }
///
/// 案号
///
[JsonProperty("case_code")]
public string CaseCode { get; set; }
///
/// 执行法院
///
[JsonProperty("enforce_court")]
public string EnforceCourt { get; set; }
///
/// 身份证号
///
[JsonProperty("id_number")]
public string IdNumber { get; set; }
///
/// 用户姓名
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 被执行人履行情况
///
[JsonProperty("performance")]
public string Performance { get; set; }
///
/// 发布日期
///
[JsonProperty("publish_date")]
public string PublishDate { get; set; }
///
/// 所在区域
///
[JsonProperty("region")]
public string Region { get; set; }
}
}