using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingCardActivateformQueryModel Data Structure. /// [Serializable] public class AlipayMarketingCardActivateformQueryModel : AopObject { /// /// 开放表单信息查询业务类型,可选类型如下: MEMBER_CARD -- 会员卡开卡 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 查询用户表单提交信息的请求id,在用户授权表单确认提交后跳转商户页面url时返回此参数。 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 会员卡模板id。使用会员卡模板创建接口(alipay.marketing.card.template.create)返回的结果 /// [XmlElement("template_id")] public string TemplateId { get; set; } } }