using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayTrustUserZminfoPairGetResponse. /// public class AlipayTrustUserZminfoPairGetResponse : AopResponse { /// /// 申请者芝麻信用信息JSON串 /// [XmlElement("apply_zm_info")] public string ApplyZmInfo { get; set; } /// /// 信息失效时间 /// [XmlElement("expire_time")] public string ExpireTime { get; set; } /// /// 被申请者芝麻信用信息JSON串 /// [XmlElement("owner_zm_info")] public string OwnerZmInfo { get; set; } } }