Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoMycarParkingConfigQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

41 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoMycarParkingConfigQueryResponse.
/// </summary>
public class AlipayEcoMycarParkingConfigQueryResponse : AopResponse
{
/// <summary>
/// 签约支付宝账号开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)传入的参数值
/// </summary>
[JsonProperty("account_no")]
public string AccountNo { get; set; }
/// <summary>
/// 业务接口列表数据 Json格式数据
/// </summary>
[JsonProperty("interface_info_list")]
public InterfaceInfoList InterfaceInfoList { get; set; }
/// <summary>
/// 商户在停车平台首页露出的LOGO链接地址开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)调用自动生成该链接
/// </summary>
[JsonProperty("merchant_logo")]
public string MerchantLogo { get; set; }
/// <summary>
/// 商户简称开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)传入的参数值
/// </summary>
[JsonProperty("merchant_name")]
public string MerchantName { get; set; }
/// <summary>
/// 商户客服电话开发者通过ISV系统配置信息注册接口(alipay.eco.mycar.parking.config.set)传入的参数值
/// </summary>
[JsonProperty("merchant_service_phone")]
public string MerchantServicePhone { get; set; }
}
}