32 lines
951 B
C#
32 lines
951 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// KoubeiTradeTicketTicketcodeSyncResponse.
|
||
/// </summary>
|
||
public class KoubeiTradeTicketTicketcodeSyncResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 该字段用于描述本次返回中的业务属性,现有:BIZ_ALREADY_SUCCESS(幂等业务码)
|
||
/// </summary>
|
||
[XmlElement("biz_code")]
|
||
public string BizCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 凭证码所属的订单id
|
||
/// </summary>
|
||
[XmlElement("order_no")]
|
||
public string OrderNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部请求号,支持英文字母和数字,由开发者自行定义(不允许重复)
|
||
/// </summary>
|
||
[XmlArray("request_id")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> RequestId { get; set; }
|
||
}
|
||
}
|