using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// ZolozAuthenticationCustomerFtokenQueryResponse.
///
public class ZolozAuthenticationCustomerFtokenQueryResponse : AopResponse
{
///
/// 图片base64 encodeString
///
[XmlElement("authimg_base_64")]
public string AuthimgBase64 { get; set; }
///
/// 支付宝uid
///
[XmlElement("uid")]
public string Uid { get; set; }
///
/// 用户名和手机号信息返回的列表
///
[XmlArray("uid_tel_pair_list")]
[XmlArrayItem("zhub_uid_tel_pair")]
public List UidTelPairList { get; set; }
}
}