using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiDingpayVirtualaccountQueryResponse. /// public class OapiDingpayVirtualaccountQueryResponse : DingTalkResponse { /// /// 钉钉错误代码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误详情 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// result /// [XmlElement("result")] public AccountQueryOpenResponseDomain Result { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// DingPayAccountOpenBoDomain Data Structure. /// [Serializable] public class DingPayAccountOpenBoDomain : TopObject { /// /// 支付宝托管账户 /// [XmlElement("anonymous_alipay_uid")] public string AnonymousAlipayUid { get; set; } /// /// 企业corpId /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 扩展属性 /// [XmlElement("extension")] public string Extension { get; set; } /// /// 支付宝资金账号列表 /// [XmlArray("real_alipay_uids")] [XmlArrayItem("string")] public List RealAlipayUids { get; set; } /// /// 当前使用的支付宝资金账号 /// [XmlElement("real_used_alipay_uid")] public string RealUsedAlipayUid { get; set; } } /// /// AccountQueryOpenResponseDomain Data Structure. /// [Serializable] public class AccountQueryOpenResponseDomain : TopObject { /// /// accountOpenBO /// [XmlElement("account_open_bo")] public DingPayAccountOpenBoDomain AccountOpenBo { get; set; } } } }