using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayMarketingCardFormtemplateSetModel Data Structure.
///
[Serializable]
public class AlipayMarketingCardFormtemplateSetModel : AopObject
{
///
/// 会员卡开卡时的表单字段配置信息,可定义多个通用表单字段,最大不超过20个。
///
[XmlElement("fields")]
public OpenFormFieldDO Fields { get; set; }
///
/// 会员卡模板id。使用会员卡模板创建接口(alipay.marketing.card.template.create)返回的结果
///
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}