NewGaoKaoApi/PaymentSDK/AliPay/Domain/ExtensionArea.cs

43 lines
1.2 KiB
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>
/// ExtensionArea Data Structure.
/// </summary>
[Serializable]
public class ExtensionArea : AopObject
{
/// <summary>
/// 跳转链接当type为"image"时必传必须是https或alipays开头的url链接。已废弃
/// </summary>
[XmlElement("goto_url")]
public string GotoUrl { get; set; }
/// <summary>
/// 扩展区高度当type值为"h5"时必填取值范围为200-500的整数
/// </summary>
[XmlElement("height")]
public long Height { get; set; }
/// <summary>
/// 扩展区名字
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 扩展区类型当前支持的值为h5表示扩展区内容类型为h5。
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 扩展区url传入h5页面url必须是https开头的链接
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
}
}