NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniUserportraitQ...

31 lines
926 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniUserportraitQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniUserportraitQueryModel : AopObject
{
/// <summary>
/// 用户画像的时间范围。RECENT_7_DAY代表近7日RECENT_30_DAY代表近30日
/// </summary>
[XmlElement("date_scope")]
public string DateScope { get; set; }
/// <summary>
/// 画像类型。AGE-年龄PROVINCE-省份CITY-城市DEVICE-设备GENDER-性别
/// </summary>
[XmlElement("portrait_type")]
public string PortraitType { get; set; }
/// <summary>
/// 用户类型。NEW_USER新用户ACTIVE_USER活跃用户
/// </summary>
[XmlElement("user_type")]
public string UserType { get; set; }
}
}