NewGaoKaoApi/PaymentSDK/AliPay/Domain/PayForPrivilegeCardTemplate...

31 lines
891 B
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>
/// PayForPrivilegeCardTemplateHeaderConfig Data Structure.
/// </summary>
[Serializable]
public class PayForPrivilegeCardTemplateHeaderConfig : AopObject
{
/// <summary>
/// 卡模板头部logo图片URL通过https://docs.open.alipay.com/common/105258 接口上传图片获得
/// </summary>
[XmlElement("logo")]
public string Logo { get; set; }
/// <summary>
/// 卡模板头部底图URL通过https://docs.open.alipay.com/common/105258上传图片获得
/// </summary>
[XmlElement("strip")]
public string Strip { get; set; }
/// <summary>
/// 卡模板头部显示名称
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
}
}