using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniSetintentiondataSetModel Data Structure. /// [Serializable] public class AlipayOpenMiniSetintentiondataSetModel : 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; } /// /// 推送到服务库的数据列表,json array格式的字符串 /// [XmlElement("data")] public string Data { get; set; } } }