67 lines
1.7 KiB
C#
67 lines
1.7 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingDataDeerInsightQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayMarketingDataDeerInsightQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 洞察名称,只能是数字、英文字母、横线或下划线
|
|
/// </summary>
|
|
[XmlElement("alias")]
|
|
public string Alias { get; set; }
|
|
|
|
/// <summary>
|
|
/// 应用唯一标识
|
|
/// </summary>
|
|
[XmlElement("app")]
|
|
public string App { get; set; }
|
|
|
|
/// <summary>
|
|
/// 权限类型
|
|
/// </summary>
|
|
[XmlElement("auth")]
|
|
public string Auth { get; set; }
|
|
|
|
/// <summary>
|
|
/// 如果未查询到洞察,是否强制新建一个返回
|
|
/// </summary>
|
|
[XmlElement("force")]
|
|
public bool Force { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否强制更新该洞察为最新版洞察
|
|
/// </summary>
|
|
[XmlElement("force_update")]
|
|
public bool ForceUpdate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务空间唯一标识
|
|
/// </summary>
|
|
[XmlElement("group_domain")]
|
|
public string GroupDomain { get; set; }
|
|
|
|
/// <summary>
|
|
/// 洞察唯一标识
|
|
/// </summary>
|
|
[XmlElement("insight_domain")]
|
|
public string InsightDomain { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务指定的额外参数
|
|
/// </summary>
|
|
[XmlElement("params")]
|
|
public string Params { get; set; }
|
|
|
|
/// <summary>
|
|
/// 调用服务的业务系统
|
|
/// </summary>
|
|
[XmlElement("system")]
|
|
public string System { get; set; }
|
|
}
|
|
}
|