NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTransferInsti...

37 lines
1.0 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>
/// AlipayOverseasTransferInstitutionpaymentQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTransferInstitutionpaymentQueryModel : AopObject
{
/// <summary>
/// 业务类型
/// </summary>
[XmlElement("biz_scene_type")]
public string BizSceneType { get; set; }
/// <summary>
/// 搜索关键字(学校名/机构ID)
/// </summary>
[XmlElement("institution_keyword")]
public string InstitutionKeyword { get; set; }
/// <summary>
/// 收款机构所在国家2位编码
/// </summary>
[XmlElement("institution_region")]
public string InstitutionRegion { get; set; }
/// <summary>
/// 透传字段json map格式
/// </summary>
[XmlElement("pass_through_info")]
public string PassThroughInfo { get; set; }
}
}