using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayMemberConsumeNotifyResponse.
///
public class AlipayMemberConsumeNotifyResponse : AopResponse
{
///
/// 请求成功时,不存在本参数; 请求失败时,本参数为错误代码
///
[XmlElement("error_code")]
public string ErrorCode { get; set; }
///
/// card_user_info不能为空
///
[XmlElement("error_msg")]
public string ErrorMsg { get; set; }
///
/// 外部会员卡
///
[XmlElement("ext_card_no")]
public string ExtCardNo { get; set; }
///
/// T:成功,F:失败
///
[XmlElement("success")]
public string Success { get; set; }
}
}