NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCardFormtemp...

25 lines
774 B
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>
/// AlipayMarketingCardFormtemplateSetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCardFormtemplateSetModel : AopObject
{
/// <summary>
/// 会员卡开卡时的表单字段配置信息可定义多个通用表单字段最大不超过20个。
/// </summary>
[XmlElement("fields")]
public OpenFormFieldDO Fields { get; set; }
/// <summary>
/// 会员卡模板id。使用会员卡模板创建接口(alipay.marketing.card.template.create)返回的结果
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}