NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataServiceResult.cs

37 lines
838 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>
/// AlipayDataServiceResult Data Structure.
/// </summary>
[Serializable]
public class AlipayDataServiceResult : AopObject
{
/// <summary>
/// 错误码
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 错误信息
/// </summary>
[XmlElement("message")]
public string Message { get; set; }
/// <summary>
/// 调用结果json格式
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
/// <summary>
/// 调用是否成功
/// </summary>
[XmlElement("success")]
public bool Success { get; set; }
}
}