using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayIserviceCognitiveAswfDagQueryModel Data Structure.
///
[Serializable]
public class AlipayIserviceCognitiveAswfDagQueryModel : AopObject
{
///
/// 业务唯一标识,不可空
///
[XmlElement("biz_id")]
public string BizId { get; set; }
///
/// 业务的任务描述
///
[XmlElement("ctxs")]
public string Ctxs { get; set; }
///
/// DAG模板ID,不可空
///
[XmlElement("template_id")]
public string TemplateId { get; set; }
///
/// 业务请求唯一id
///
[XmlElement("trace_id")]
public string TraceId { get; set; }
}
}