NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayMarketingCardActivate...

18 lines
1.0 KiB
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.Response
{
/// <summary>
/// AlipayMarketingCardActivateformQueryResponse.
/// </summary>
public class AlipayMarketingCardActivateformQueryResponse : AopResponse
{
/// <summary>
/// 表单提交信息各个字段的值JSON数组 通用表单字段名称如下示例: OPEN_FORM_FIELD_MOBILE 手机号 OPEN_FORM_FIELD_GENDER 性别 OPEN_FORM_FIELD_NAME 姓名 OPEN_FORM_FIELD_BIRTHDAY 生日 OPEN_FORM_FIELD_IDCARD 身份证 OPEN_FORM_FIELD_EMAIL 邮箱 OPEN_FORM_FIELD_ADDRESS 地址 详细字段名称列表见会员卡开卡表单模板配置接口alipay.marketing.card.formtemplate.set 注: 1. 证件类型字段(OPEN_FORM_FIELD_CERT_TYPE)返回结果取值如下: 0 -- 身份证 1 -- 护照 2 -- 港澳居民通行证 3 -- 台湾居民通行证
/// </summary>
[XmlElement("infos")]
public string Infos { get; set; }
}
}