NewGaoKaoApi/PaymentSDK/AliPay/Domain/CredentialsResponseHeader.cs

31 lines
978 B
C#
Raw 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>
/// CredentialsResponseHeader Data Structure.
/// </summary>
[Serializable]
public class CredentialsResponseHeader : AopObject
{
/// <summary>
/// 200=成功400=请求错误403=bundle查询不到。 Status code used to indicate an error, or "200" for success.
/// </summary>
[XmlElement("status_code")]
public string StatusCode { get; set; }
/// <summary>
/// Not parsed programmatically. Example "Downstream system offline".
/// </summary>
[XmlElement("status_message")]
public string StatusMessage { get; set; }
/// <summary>
/// Conveys failure codes from downstream entities or for more granular conveyance of specific error conditions.
/// </summary>
[XmlElement("sub_status_code")]
public string SubStatusCode { get; set; }
}
}