You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
693 B
C#

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