using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayPassSyncAddResponse. /// public class AlipayPassSyncAddResponse : AopResponse { /// /// 成功时返回的业务参数信息。 /// [JsonProperty("biz_result")] public string BizResult { get; set; } /// /// 当新增alipass不成功时,产生的错误码。 /// [JsonProperty("error_code")] public string ErrorCode { get; set; } /// /// 成功标识 /// [JsonProperty("success")] public bool Success { get; set; } } }