17 lines
425 B
C#
17 lines
425 B
C#
using Newtonsoft.Json;
|
|
using Alipay.AopSdk.Core.Domain;
|
|
|
|
namespace Alipay.AopSdk.Core.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayDataDataserviceUserlevelZrankGetResponse.
|
|
/// </summary>
|
|
public class AlipayDataDataserviceUserlevelZrankGetResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 活跃高价值用户返回
|
|
/// </summary>
|
|
[JsonProperty("result")]
|
|
public AlipayHighValueCustomerResult Result { get; set; }
|
|
}
|
|
} |