NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniExperienceCre...

25 lines
801 B
C#
Raw 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>
/// AlipayOpenMiniExperienceCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniExperienceCreateModel : AopObject
{
/// <summary>
/// 小程序版本号
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 小程序客户端类型默认为支付宝端。支付宝端com.alipay.alipaywallet,DINGDING端com.alibaba.android.rimet,高德端:com.amap.app,天猫精灵端:com.alibaba.ailabs.genie.webapps,支付宝IOT:com.alipay.iot.xpaas
/// </summary>
[XmlElement("bundle_id")]
public string BundleId { get; set; }
}
}