using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayPassCodeVerifyResponse.
///
public class AlipayPassCodeVerifyResponse : AopResponse
{
///
/// 返回核销流水号及操作结果
///
[JsonProperty("biz_result")]
public string BizResult { get; set; }
///
/// 返回码.
///
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
///
/// 是否发码成功的标识。
///
[JsonProperty("success")]
public bool Success { get; set; }
}
}