using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEbppMerchantConfigGetResponse. /// public class AlipayEbppMerchantConfigGetResponse : AopResponse { /// /// 商户机构配置信息 /// [XmlArray("inst_configs")] [XmlArrayItem("merchant_inst_config")] public List InstConfigs { get; set; } /// /// 商户的用户ID /// [XmlElement("merchant_user_id")] public string MerchantUserId { get; set; } } }