| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Entity.UnionPay
- {
- /// <summary>
- /// 获取证件类型列表请求
- /// </summary>
- public class UnionPayIdCardTypesRequest
- {
- /// <summary>
- /// 证件类型大类 1-商户个人证件类型 2-通道个人证件类型;不填时默认1
- /// </summary>
- public string firstType { get; set; }
- /// <summary>
- /// 证件类型小类 (对应运营平台配置页面的字段来源);不填时默认1
- /// </summary>
- public string secondType { get; set; }
- }
- }
|