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.

37 lines
1.3 KiB
C#

9 months ago
using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEcoMycarParkingConfigQueryResponse.
/// </summary>
public class AlipayEcoMycarParkingConfigQueryResponse : AopResponse
{
/// <summary>
/// 签约支付宝账号开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)传入的参数值
/// </summary>
[XmlElement("account_no")]
public string AccountNo { get; set; }
/// <summary>
/// 业务接口列表数据 Json格式数据
/// </summary>
[XmlElement("interface_info_list")]
public InterfaceInfoList InterfaceInfoList { get; set; }
/// <summary>
/// 商户简称开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)传入的参数值
/// </summary>
[XmlElement("merchant_name")]
public string MerchantName { get; set; }
/// <summary>
/// 商户客服电话开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)传入的参数值
/// </summary>
[XmlElement("merchant_service_phone")]
public string MerchantServicePhone { get; set; }
}
}