16 lines
375 B
C#
16 lines
375 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Response
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipayOpenPublicLabelUserQueryResponse.
|
|||
|
|
/// </summary>
|
|||
|
|
public class AlipayOpenPublicLabelUserQueryResponse : AopResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用户标签id列表,以英文逗号分隔
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("label_ids")]
|
|||
|
|
public string LabelIds { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|