NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniMiniappServic...

25 lines
688 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniMiniappServiceconfigModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniMiniappServiceconfigModifyModel : AopObject
{
/// <summary>
/// 云客服是否在小程序首页透出true-开启false-不开启
/// </summary>
[XmlElement("home_open")]
public bool HomeOpen { get; set; }
/// <summary>
/// 客服方式目前支持ANTCLOUD-云客服
/// </summary>
[XmlElement("service_config")]
public string ServiceConfig { get; set; }
}
}