using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// DataDim Data Structure.
///
[Serializable]
public class DataDim : AopObject
{
///
/// 维度名称,代表维度层级含义 不同维度间用“|”分割
///
[JsonProperty("dim_name")]
public string DimName { get; set; }
///
/// 维度类型,并级或者层级 parallel 并列维度 hierarchical 层级维度
///
[JsonProperty("dim_type")]
public string DimType { get; set; }
///
/// 维度值,代表维度层级的值
///
[JsonProperty("dim_value")]
public string DimValue { get; set; }
}
}