using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayUserMemberCardUpdateResponse.
///
public class AlipayUserMemberCardUpdateResponse : AopResponse
{
///
/// 请求失败时,不存在本参数;
///
[XmlElement("card")]
public string Card { get; set; }
///
/// 返回结果码
///
[XmlElement("result_code")]
public string ResultCode { get; set; }
///
/// 处理结果描述
///
[XmlElement("result_msg")]
public string ResultMsg { get; set; }
}
}