You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB
C#

9 months ago
using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMobilePublicFollowListResponse.
/// </summary>
public class AlipayMobilePublicFollowListResponse : AopResponse
{
/// <summary>
/// 返回结果码如200标识成功
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 当前组的值
/// </summary>
[XmlElement("count")]
public string Count { get; set; }
/// <summary>
/// 用户数据
/// </summary>
[XmlElement("data")]
public Data Data { get; set; }
/// <summary>
/// 与nextUserId对应标准Alipay UserId
/// </summary>
[XmlElement("next_alipay_user_id")]
public string NextAlipayUserId { get; set; }
/// <summary>
/// 查询分组的userid
/// </summary>
[XmlElement("next_user_id")]
public string NextUserId { get; set; }
}
}