using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ItemUnitInfo Data Structure.
///
[Serializable]
public class ItemUnitInfo : AopObject
{
///
/// 商品详情-商品套餐内容-菜品数量
///
[JsonProperty("amount")]
public long Amount { get; set; }
///
/// 商品详情-商品套餐内容-菜品价格。字符串,单位元,两位小数
///
[JsonProperty("price")]
public string Price { get; set; }
///
/// 商品详情-商品套餐内容-菜品规格
///
[JsonProperty("spec")]
public string Spec { get; set; }
///
/// 商品详情-商品套餐内容-菜品名称。不得超过15个中文字符
///
[JsonProperty("title")]
public string Title { get; set; }
///
/// 商品详情-商品套餐内容-菜品数量单位
///
[JsonProperty("unit")]
public string Unit { get; set; }
}
}