NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceKidsAccountCo...

49 lines
1.4 KiB
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>
/// AlipayCommerceKidsAccountConsultModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceKidsAccountConsultModel : AopObject
{
/// <summary>
/// 与child_cert_type对应如果child_cert_type为IDENTITY_CARD对应的取值为身份证号
/// </summary>
[XmlElement("child_cert_no")]
public string ChildCertNo { get; set; }
/// <summary>
/// 证件类型,暂时只支持身份证
/// </summary>
[XmlElement("child_cert_type")]
public string ChildCertType { get; set; }
/// <summary>
/// 信息来源,用于指定一个小宝账户
/// </summary>
[XmlElement("info_source")]
public InfoSource InfoSource { get; set; }
/// <summary>
/// 当前操作者支付宝userId
/// </summary>
[XmlElement("operator_uid")]
public string OperatorUid { get; set; }
/// <summary>
/// 家长支付宝userId用于查询与该家长关联的孩子
/// </summary>
[XmlElement("parent_uid")]
public string ParentUid { get; set; }
/// <summary>
/// 场景码,接入前需要进行申请
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}