using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MerchantInstConfig Data Structure.
///
[Serializable]
public class MerchantInstConfig : AopObject
{
///
/// 机构短名称,既是合作机构的英文简称,用来标识该机构的唯一性;
///
[JsonProperty("en_name")]
public string EnName { get; set; }
///
/// 支付宝定义的业务类型,JF表示公共事业缴费,HK表示信用卡还款具体见附录描述
///
[JsonProperty("order_type")]
public string OrderType { get; set; }
///
/// 业务场景;分为销帐(chargeoff)和输出(EXTERNAL)
///
[JsonProperty("scene")]
public string Scene { get; set; }
///
/// 合作机构中文名称,如HZCB,中文名称:杭州银行
///
[JsonProperty("zh_name")]
public string ZhName { get; set; }
}
}