Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarParkingConfigSetModel.cs

44 lines
1.4 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarParkingConfigSetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingConfigSetModel : AopObject
{
/// <summary>
/// 签约支付宝账号
/// </summary>
[JsonProperty("account_no")]
public string AccountNo { get; set; }
/// <summary>
/// 接口信息列表停车业务需要配置的接口列表该值为JSON数据格式的LIST对象现阶段只需要配置一个页面接口即可 。每次请将所有的接口配置信息都传入,未传的接口信息将会被置空。
/// </summary>
[JsonProperty("interface_info_list")]
public List<InterfaceInfoList> InterfaceInfoList { get; set; }
/// <summary>
/// 商户在停车平台首页露出的LOGO注意该图片为PNG格式内容为BASE64的字符串若为空则停车平台首页将不露出商户LOGO。建议图片尺寸27px*27px大小不要超过60K
/// </summary>
[JsonProperty("merchant_logo")]
public string MerchantLogo { get; set; }
/// <summary>
/// 商户简称,由开发者提供
/// </summary>
[JsonProperty("merchant_name")]
public string MerchantName { get; set; }
/// <summary>
/// 商户客服电话
/// </summary>
[JsonProperty("merchant_service_phone")]
public string MerchantServicePhone { get; set; }
}
}