NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataAiserviceSgxGatew...

37 lines
1.4 KiB
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>
/// AlipayDataAiserviceSgxGatewayQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataAiserviceSgxGatewayQueryModel : AopObject
{
/// <summary>
/// biz_handler: 具体的业务方法名称该值必须填写。业务方请联系此openapi接口负责人获取业务方法名称。
/// </summary>
[XmlElement("biz_handler")]
public string BizHandler { get; set; }
/// <summary>
/// biz_handler_input: 具体业务请求输入的json字符串必须填写且唯一。该值的具体内容取决于具体业务。
/// </summary>
[XmlElement("biz_handler_input")]
public string BizHandlerInput { get; set; }
/// <summary>
/// institution_uuid: 机构ID该值可选默认不填写。业务调用方如果需要填写此值需要联系此openapi接口人获取。
/// </summary>
[XmlElement("institution_uuid")]
public string InstitutionUuid { get; set; }
/// <summary>
/// request_uuid: 请求的唯一ID用于定位请求。该ID用户可以自行生成每次请求的ID不要重复。
/// </summary>
[XmlElement("request_uuid")]
public string RequestUuid { get; set; }
}
}