using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEbppMerchantConfigGetResponse.
///
public class AlipayEbppMerchantConfigGetResponse : AopResponse
{
///
/// 商户机构配置信息
///
[JsonProperty("inst_configs")]
public List InstConfigs { get; set; }
///
/// 商户的用户ID
///
[JsonProperty("merchant_user_id")]
public string MerchantUserId { get; set; }
}
}