NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarParkingConfig...

45 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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