NewGaoKaoApi/PaymentSDK/AliPay/Domain/CplifeNoticeImg.cs

25 lines
1.0 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>
/// CplifeNoticeImg Data Structure.
/// </summary>
[Serializable]
public class CplifeNoticeImg : AopObject
{
/// <summary>
/// 在通知中需要展示的图片链接API调用之后该图片将会被自动下载到物业社区平台服务器用于系统显示。API调用成功之后手工更改URL对应的图片资源时用户在支付宝APP端看到的图片将保持不变。
/// </summary>
[XmlElement("image_url")]
public string ImageUrl { get; set; }
/// <summary>
/// 在通知中需要展示的图片的缩略图链接API调用之后该图片将会被自动下载到物业社区平台服务器用于系统显示。API调用成功之后手工更改URL对应的图片资源时用户在支付宝APP端看到的图片将保持不变。
/// </summary>
[XmlElement("thumbnail_url")]
public string ThumbnailUrl { get; set; }
}
}