NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayCommerceIotReceiptSen...

54 lines
1.3 KiB
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.Response
{
/// <summary>
/// AlipayCommerceIotReceiptSendResponse.
/// </summary>
public class AlipayCommerceIotReceiptSendResponse : AopResponse
{
/// <summary>
/// 扩展字段,暂时不用
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 小票id
/// </summary>
[XmlElement("receipt_id")]
public string ReceiptId { get; set; }
/// <summary>
/// 返回码
/// </summary>
[XmlElement("ret_code")]
public string RetCode { get; set; }
/// <summary>
/// 返回子码
/// </summary>
[XmlElement("ret_code_sub")]
public string RetCodeSub { get; set; }
/// <summary>
/// 返回消息
/// </summary>
[XmlElement("ret_message")]
public string RetMessage { get; set; }
/// <summary>
/// 返回子消息
/// </summary>
[XmlElement("ret_message_sub")]
public string RetMessageSub { get; set; }
/// <summary>
/// 调用成功失败true/false
/// </summary>
[XmlElement("success")]
public bool Success { get; set; }
}
}