24 lines
639 B
C#
24 lines
639 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayUserCustIdentifyActivity Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayUserCustIdentifyActivity : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 活动扩展信息,预留字段。例如通过连接引导参加运营活动,包含活动链接(或者参与方式)及活动信息。
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("activity_info")]
|
||
|
|
public string ActivityInfo { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 活动名称
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("activity_name")]
|
||
|
|
public string ActivityName { get; set; }
|
||
|
|
}
|
||
|
|
}
|