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