NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayDataAiserviceSgxGatew...

24 lines
822 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.Response
{
/// <summary>
/// AlipayDataAiserviceSgxGatewayQueryResponse.
/// </summary>
public class AlipayDataAiserviceSgxGatewayQueryResponse : AopResponse
{
/// <summary>
/// request_uuid 对应用户请求的唯一id用于定位请求具体对应到哪一次调用。所有调用场景都会返回改值 。该值由用户请求中传入
/// </summary>
[XmlElement("request_uuid")]
public string RequestUuid { get; set; }
/// <summary>
/// result : 业务处理结果json字符串所有场景都会返回该值。该值由具体调用接口的返回值决定。
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
}
}