using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayUserMobilessoTokenGetResponse.
///
public class AlipayUserMobilessoTokenGetResponse : AopResponse
{
///
/// 授权用户获得的token
///
[XmlElement("token")]
public string Token { get; set; }
///
/// 授权用户的id。 支付宝账号对应的支付宝唯一用户号。 以2088开头的16位纯数字组成。
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}