using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasTransferInstitutionpaymentQueryModel Data Structure. /// [Serializable] public class AlipayOverseasTransferInstitutionpaymentQueryModel : AopObject { /// /// 业务类型 /// [XmlElement("biz_scene_type")] public string BizSceneType { get; set; } /// /// 搜索关键字(学校名/机构ID) /// [XmlElement("institution_keyword")] public string InstitutionKeyword { get; set; } /// /// 收款机构所在国家,2位编码 /// [XmlElement("institution_region")] public string InstitutionRegion { get; set; } /// /// 透传字段,json map格式 /// [XmlElement("pass_through_info")] public string PassThroughInfo { get; set; } } }