NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateImageDTO.cs

25 lines
1.1 KiB
C#
Raw 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>
/// TemplateImageDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateImageDTO : AopObject
{
/// <summary>
/// logo的图片ID通过接口alipay.offline.material.image.upload上传图片获得图片ID。图片需在1M以内支持bmp、png、jpeg、jpg、gif格式尺寸不小于500*500px的正方形请优先使用商家LOGO。支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("logo")]
public string Logo { get; set; }
/// <summary>
/// 背景图片ID通过接口alipay.offline.material.image.upload上传图片获得图片ID。图片需在1M以内支持bmp、png、jpeg、jpg、gif格式尺寸不小于1020*643px不得有圆角不得拉伸变形。支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("strip")]
public string Strip { get; set; }
}
}