using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceKidsAccountBindModel Data Structure.
///
[Serializable]
public class AlipayCommerceKidsAccountBindModel : AopObject
{
///
/// 与child_cert_type对应,如果child_cert_type为IDENTITY_CARD,对应的取值为身份证号
///
[XmlElement("child_cert_no")]
public string ChildCertNo { get; set; }
///
/// 证件类型,暂时只支持身份证
///
[XmlElement("child_cert_type")]
public string ChildCertType { get; set; }
///
/// 儿童唯一id
///
[XmlElement("child_id")]
public string ChildId { get; set; }
///
/// 儿童名字
///
[XmlElement("child_name")]
public string ChildName { get; set; }
///
/// 所在班级
///
[XmlElement("class_name")]
public string ClassName { get; set; }
///
/// 联系人手机
///
[XmlElement("contact_mobile")]
public string ContactMobile { get; set; }
///
/// 家长支付宝userId,创建的账户将会同时与家长绑定关系
///
[XmlElement("parent_uid")]
public string ParentUid { get; set; }
///
/// 场景码,接入前需要进行申请
///
[XmlElement("scene_code")]
public string SceneCode { get; set; }
///
/// 学校id,建议采用支付宝分配的学校编号
///
[XmlElement("school_id")]
public string SchoolId { get; set; }
///
/// 学号
///
[XmlElement("student_no")]
public string StudentNo { get; set; }
}
}