using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOpenPublicMatchuserLabelDeleteModel Data Structure. /// [Serializable] public class AlipayOpenPublicMatchuserLabelDeleteModel : AopObject { /// /// 标签id /// [JsonProperty("label_id")] public string LabelId { get; set; } /// /// 支付宝用户匹配器列表,最多传入10条 /// [JsonProperty("matchers")] public List Matchers { get; set; } } }