using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayOpenPublicLifeLabelCreateModel Data Structure.
///
[Serializable]
public class AlipayOpenPublicLifeLabelCreateModel : AopObject
{
///
/// 标签值类型,目前只支持string(字符串类型),不传默认为"string"
///
[JsonProperty("data_type")]
public string DataType { get; set; }
///
/// 自定义标签名
///
[JsonProperty("label_name")]
public string LabelName { get; set; }
}
}