| 123456789101112131415161718192021222324 |
- using System;
- using Newtonsoft.Json;
- namespace Essensoft.AspNetCore.Payment.Alipay.Domain
- {
- /// <summary>
- /// AdvertItem Data Structure.
- /// </summary>
- [Serializable]
- public class AdvertItem : AlipayObject
- {
- /// <summary>
- /// 广告图片url, 尺寸为996*240,最大不超过5M,支持格式:.jpg、.png ,请先调用<a href="https://docs.open.alipay.com/api_3/alipay.offline.material.image.upload"> 图片上传接口</a>获得图片url
- /// </summary>
- [JsonProperty("img_url")]
- public string ImgUrl { get; set; }
- /// <summary>
- /// 跳转链接,点击广告图片跳到的链接url
- /// </summary>
- [JsonProperty("link_url")]
- public string LinkUrl { get; set; }
- }
- }
|