using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayOpenAppServiceBizabilitydataSetModel Data Structure.
///
[Serializable]
public class AlipayOpenAppServiceBizabilitydataSetModel : AopObject
{
///
/// 操作类型.PUT:新增或覆盖,REMOVE:删除
///
[XmlElement("action")]
public string Action { get; set; }
///
/// 批次的唯一编号,对应本批次上传的多条意图数据,开发者自定义
///
[XmlElement("batch_no")]
public string BatchNo { get; set; }
///
/// 用于标识数据所属的服务类目
///
[XmlElement("category")]
public string Category { get; set; }
///
/// 推送到服务库的数据列表
///
[XmlArray("data_list")]
[XmlArrayItem("biz_ability_data")]
public List DataList { get; set; }
///
/// 服务业务能力数据类型,支持:ITEM_SUMMARY(商品摘要)、USER_INTENSION(用户意图数据)、FUNCTION(服务功能)
///
[XmlElement("type")]
public string Type { get; set; }
}
}