You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
971 B
C#

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.Response
{
/// <summary>
/// MybankFinanceYulibaoCapitalRansomResponse.
/// </summary>
public class MybankFinanceYulibaoCapitalRansomResponse : AopResponse
{
/// <summary>
/// 余利宝内部的交易流水号
/// </summary>
[XmlElement("inner_biz_no")]
public string InnerBizNo { get; set; }
/// <summary>
/// 交易结果备注信息
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 交易结果目前会有3种状态值1success表示交易成功、2fail表示交易失败:、3inprocess表示交易处理中。其中交易处理中的状态可以使用回查交易历史的方式查看其处理结果。
/// </summary>
[XmlElement("trans_result")]
public string TransResult { get; set; }
}
}