NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniInnerdeploypa...

37 lines
1.0 KiB
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>
/// AlipayOpenMiniInnerdeploypackageQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniInnerdeploypackageQueryModel : AopObject
{
/// <summary>
/// 一个端的标识用于区分不同的客户端每接入一个客户端都需要向小程序应用中心申请bundelId入驻
/// </summary>
[XmlElement("bundle_id")]
public string BundleId { get; set; }
/// <summary>
/// 开发者标识的版本
/// </summary>
[XmlElement("developer_version")]
public string DeveloperVersion { get; set; }
/// <summary>
/// 租户类型,由应用中心分配
/// </summary>
[XmlElement("inst_code")]
public string InstCode { get; set; }
/// <summary>
/// 小程序ID
/// </summary>
[XmlElement("mini_app_id")]
public string MiniAppId { get; set; }
}
}