初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicMatchuserLabelCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicMatchuserLabelCreateModel : AopObject
{
/// <summary>
/// 标签id调用创建标签接口会返回label_id
/// </summary>
[JsonProperty("label_id")]
public string LabelId { get; set; }
/// <summary>
/// 标签值由开发者自主指定标签值类型要满足创建标签接口中data_type参数的限定。
/// </summary>
[JsonProperty("label_value")]
public string LabelValue { get; set; }
/// <summary>
/// 支付宝用户匹配器列表最多传入10条
/// </summary>
[JsonProperty("matchers")]
public List<Matcher> Matchers { get; set; }
}
}