NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceKidsAccountCr...

79 lines
2.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>
/// AlipayCommerceKidsAccountCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceKidsAccountCreateModel : 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("child_name")]
public string ChildName { get; set; }
/// <summary>
/// 所在班级
/// </summary>
[XmlElement("class_name")]
public string ClassName { get; set; }
/// <summary>
/// 联系人手机
/// </summary>
[XmlElement("contact_mobile")]
public string ContactMobile { get; set; }
/// <summary>
/// 第三方业务id需保证唯一或者和业务类型组合保证唯一用于关联上传到支付宝的数据比如在智能设备场景通常使用硬件唯一id
/// </summary>
[XmlElement("out_biz_id")]
public string OutBizId { get; set; }
/// <summary>
/// 外围业务类型,有具体场景决定具体语义,比如智能设备场景表示设备型号
/// </summary>
[XmlElement("out_biz_type")]
public string OutBizType { get; set; }
/// <summary>
/// 家长支付宝userId创建的账户将会同时与家长绑定关系
/// </summary>
[XmlElement("parent_uid")]
public string ParentUid { get; set; }
/// <summary>
/// 场景码,接入前需要进行申请
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 学校id建议采用支付宝分配的学校编号
/// </summary>
[XmlElement("school_id")]
public string SchoolId { get; set; }
/// <summary>
/// 学号
/// </summary>
[XmlElement("student_no")]
public string StudentNo { get; set; }
}
}