NewGaoKaoApi/PaymentSDK/AliPay/Domain/McardStylInfo.cs

31 lines
1.1 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>
/// McardStylInfo Data Structure.
/// </summary>
[Serializable]
public class McardStylInfo : AopObject
{
/// <summary>
/// 背景图片Id通过接口alipay.offline.material.image.upload上传图片 图片说明2M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于1020*643px 图片不得有圆角,不得拉伸变形
/// </summary>
[XmlElement("background_id")]
public string BackgroundId { get; set; }
/// <summary>
/// 背景色
/// </summary>
[XmlElement("bg_color")]
public string BgColor { get; set; }
/// <summary>
/// logo的图片ID通过接口alipay.offline.material.image.upload上传图片 图片说明1M以内格式bmp、png、jpeg、jpg、gif 尺寸不小于500*500px的正方形 请优先使用商家LOGO
/// </summary>
[XmlElement("logo_id")]
public string LogoId { get; set; }
}
}