NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCardActivate...

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