using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPlatformAppAddResponse. /// public class AlipayPlatformAppAddResponse : AopResponse { /// /// AOP应用app_id /// [XmlElement("aop_app_id")] public string AopAppId { get; set; } /// /// AOP应用状态 /// [XmlElement("aop_app_status")] public string AopAppStatus { get; set; } /// /// AOP应用审核意见 /// [XmlElement("aop_audit_opinion")] public string AopAuditOpinion { get; set; } /// /// 外部应用ID /// [XmlElement("out_app_id")] public string OutAppId { get; set; } } }