NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayIserviceCognitiveAswf...

37 lines
911 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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