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