using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniAppdeployBydeployversionQueryModel Data Structure. /// [Serializable] public class AlipayOpenMiniAppdeployBydeployversionQueryModel : AopObject { /// /// 客户端标识 /// [XmlElement("bundle_id")] public string BundleId { get; set; } /// /// 发布标识 /// [XmlElement("deploy_version")] public string DeployVersion { get; set; } /// /// 租户 /// [XmlElement("inst_code")] public string InstCode { get; set; } /// /// 小程序ID /// [XmlElement("mini_app_id")] public string MiniAppId { get; set; } } }