NewGaoKaoApi/PaymentSDK/AliPay/Domain/InvestigCategoryData.cs

55 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// InvestigCategoryData Data Structure.
/// </summary>
[Serializable]
public class InvestigCategoryData : AopObject
{
/// <summary>
/// 数据项
/// </summary>
[XmlElement("category")]
public string Category { get; set; }
/// <summary>
/// 采集的数据的版本号。
/// </summary>
[XmlElement("data_version")]
public string DataVersion { get; set; }
/// <summary>
/// 实体code
/// </summary>
[XmlElement("entity_code")]
public string EntityCode { get; set; }
/// <summary>
/// 实体名
/// </summary>
[XmlElement("entity_name")]
public string EntityName { get; set; }
/// <summary>
/// 实体类别
/// </summary>
[XmlElement("entity_type")]
public string EntityType { get; set; }
/// <summary>
/// 征信模型结果,以JSON格式输出包括征信评分creditScore、不准入原因refuseReasons、模型标识码modelIdCode三个字段
/// </summary>
[XmlElement("model_result_object")]
public string ModelResultObject { get; set; }
/// <summary>
/// 采集状态
/// </summary>
[XmlElement("state")]
public string State { get; set; }
}
}