using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// ZhimaMerchantCreditserviceDetailQueryResponse. /// public class ZhimaMerchantCreditserviceDetailQueryResponse : AopResponse { /// /// 信用服务基础信息配置 /// [XmlElement("base_info_config")] public BaseInfoConfig BaseInfoConfig { get; set; } /// /// 信用服务ID /// [XmlElement("credit_service_id")] public string CreditServiceId { get; set; } /// /// 信用服务的创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 信用服务的修改时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 信用服务版本的下线时间 /// [XmlElement("gmt_offline")] public string GmtOffline { get; set; } /// /// 信用服务版本的上线时间 /// [XmlElement("gmt_online")] public string GmtOnline { get; set; } /// /// 信用服务版本的审批通过时间 /// [XmlElement("gmt_review")] public string GmtReview { get; set; } /// /// 信用服务备注说明 /// [XmlElement("instruction")] public string Instruction { get; set; } /// /// 间连模式创建信用服务的ISV商户ID /// [XmlElement("isv_id")] public string IsvId { get; set; } /// /// 提供信用服务的商户的ID /// [XmlElement("merchant_id")] public string MerchantId { get; set; } /// /// 提供信用服务的商户的名称 /// [XmlElement("merchant_name")] public string MerchantName { get; set; } /// /// 信用服务的工单ID /// [XmlElement("process_id")] public string ProcessId { get; set; } /// /// 信用服务守护配置 /// [XmlElement("promise_config")] public PromiseConfig PromiseConfig { get; set; } /// /// 信用服务版本审核失败时的原因描述 /// [XmlElement("review_failed_msg")] public string ReviewFailedMsg { get; set; } /// /// 信用服务版本审核状态,可取值: init(未提交); reviewing(审核中); review_failed(审核驳回); review_passed(审核通过) /// [XmlElement("review_status")] public string ReviewStatus { get; set; } /// /// 信用服务风控配置 /// [XmlElement("risk_config")] public RiskConfig RiskConfig { get; set; } /// /// 行业解决方案的ID /// [XmlElement("solution_id")] public string SolutionId { get; set; } /// /// 行业解决方案的名称 /// [XmlElement("solution_name")] public string SolutionName { get; set; } /// /// 信用服务版本状态,可取值: init(未上线); to_be_published(待发布); online_processing(上线中); online(已上线); offline(已下线); notOnline(未上线) /// [XmlElement("status")] public string Status { get; set; } /// /// 信用服务版本的版本号 /// [XmlElement("version_no")] public string VersionNo { get; set; } } }