using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPassSyncUpdateResponse. /// public class AlipayPassSyncUpdateResponse : AopResponse { /// /// 更新成功时的业务信息 /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 当新增alipass不成功时,产生的错误码. /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 是否更新成功的标识。 /// [XmlElement("success")] public bool Success { get; set; } } }