using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceIotGroupCreateModel Data Structure.
///
[Serializable]
public class AlipayCommerceIotGroupCreateModel : AopObject
{
///
/// 业务类型-代表不同的业务场景 distribution表示服务分发
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 分组描述
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 分组名称
///
[XmlElement("group_name")]
public string GroupName { get; set; }
}
}