using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiFinanceLoanNotifyLendResponse. /// public class OapiFinanceLoanNotifyLendResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果模型 /// [XmlElement("result")] public OpenCommonResultDomain Result { get; set; } /// /// true 成功,false 异常 /// [XmlElement("success")] public bool Success { get; set; } /// /// OpenCommonResultDomain Data Structure. /// [Serializable] public class OpenCommonResultDomain : TopObject { /// /// 结果:Y 成功, N 失败 /// [XmlElement("result")] public string Result { get; set; } } } }