Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozAuthenticationCustomerFtokenQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

33 lines
901 B
C#

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