using System; using System.Xml.Serialization; namespace Aop.Api.Request { /// /// AlipayOpenMiniVersionOnlineModel Data Structure. /// [Serializable] public class AlipayOpenMiniVersionOnlineModel : AopObject { /// /// 商家小程序版本号,需为审核通过状态或灰度中版本。 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 小程序投放的端参数,例如投放到支付宝钱包是支付宝端。默认支付宝端。支持: com.alipay.alipaywallet:支付宝端; com.alipay.iot.xpaas:支付宝IoT端。 /// [XmlElement("bundle_id")] public string BundleId { get; set; } /// /// true - 性能优先; false - 覆盖优先(默认) /// [XmlElement("downgrade")] public bool Downgrade { get; set; } } }