using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOpenPublicLabelUserDeleteModel Data Structure. /// [Serializable] public class AlipayOpenPublicLabelUserDeleteModel : AopObject { /// /// 标签id /// [JsonProperty("label_id")] public string LabelId { get; set; } /// /// 支付宝用户的userid,2088开头长度为16位的字符串 /// [JsonProperty("user_id")] public string UserId { get; set; } } }