NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoBasicBizinfoQueryM...

43 lines
1.1 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.Domain
{
/// <summary>
/// AlipayEcoBasicBizinfoQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoBasicBizinfoQueryModel : AopObject
{
/// <summary>
/// 表示提供目标业务的机构名称
/// </summary>
[XmlElement("biz_inst")]
public string BizInst { get; set; }
/// <summary>
/// 业务类型
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 业务数据码标识业务场景一般映射业务方的具体业务api
/// </summary>
[XmlElement("data_code")]
public string DataCode { get; set; }
/// <summary>
/// 输入参数的额外信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 目前机构需要的请求上下文json格式
/// </summary>
[XmlElement("request_context")]
public string RequestContext { get; set; }
}
}