NewGaoKaoApi/PaymentSDK/AliPay/Domain/ParamExtInfo.cs

31 lines
896 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>
/// ParamExtInfo Data Structure.
/// </summary>
[Serializable]
public class ParamExtInfo : AopObject
{
/// <summary>
/// 小程序地址中的参数名称,具体详见接口开发文档
/// </summary>
[XmlElement("param_name")]
public string ParamName { get; set; }
/// <summary>
/// 小程序地址中的参数值,具体详见接口开发文档
/// </summary>
[XmlElement("param_value")]
public string ParamValue { get; set; }
/// <summary>
/// 小程序地址中的参数类型, start小程序的启动参数page小程序的页面参数。具体详见接口开发文档
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}