NewGaoKaoApi/PaymentSDK/AliPay/Domain/AdvertItem.cs

25 lines
755 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>
/// AdvertItem Data Structure.
/// </summary>
[Serializable]
public class AdvertItem : AopObject
{
/// <summary>
/// 广告图片url, 尺寸为996*240最大不超过5M支持格式:.jpg、.png ,请先调用<a href="https://docs.open.alipay.com/api_3/alipay.offline.material.image.upload"> 图片上传接口</a>获得图片url
/// </summary>
[XmlElement("img_url")]
public string ImgUrl { get; set; }
/// <summary>
/// 跳转链接点击广告图片跳到的链接url
/// </summary>
[XmlElement("link_url")]
public string LinkUrl { get; set; }
}
}