NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniInnerclientin...

31 lines
874 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>
/// AlipayOpenMiniInnerclientinfoCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniInnerclientinfoCreateModel : AopObject
{
/// <summary>
/// 端ID不可重复接入方需要和小程序平台约定格式
/// </summary>
[XmlElement("bundle_id")]
public string BundleId { get; set; }
/// <summary>
/// 端名称
/// </summary>
[XmlElement("bundle_name")]
public string BundleName { get; set; }
/// <summary>
/// 端信息缓存前缀,不可重复,接入方需要和小程序平台约定前后缀信息
/// </summary>
[XmlElement("bundle_prefix")]
public string BundlePrefix { get; set; }
}
}