NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniVersionDelete...

25 lines
758 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>
/// AlipayOpenMiniVersionDeleteModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniVersionDeleteModel : AopObject
{
/// <summary>
/// 小程序版本号
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 小程序投放的端参数例如投放到支付宝钱包是支付宝端。该参数可选默认支付宝端目前仅支持支付宝端枚举列举com.alipay.alipaywallet:支付宝端
/// </summary>
[XmlElement("bundle_id")]
public string BundleId { get; set; }
}
}