NewGaoKaoApi/PaymentSDK/AliPay/Domain/ContactInfoKt.cs

57 lines
1.5 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// ContactInfoKt Data Structure.
/// </summary>
[Serializable]
public class ContactInfoKt : AopObject
{
/// <summary>
/// 联系人电子邮箱
/// </summary>
[XmlElement("email")]
public string Email { get; set; }
/// <summary>
/// 联系人身份证号
/// </summary>
[XmlElement("id_card_no")]
public string IdCardNo { get; set; }
/// <summary>
/// 联系人手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 联系人名字
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 联系人电话
/// </summary>
[XmlElement("phone")]
public string Phone { get; set; }
/// <summary>
/// 学校联系人业务标识枚举,表示联系人的职责。异议处理接口人:02; 关键联系人:06;数据反馈接口人:11;服务联动接口人:08
/// </summary>
[XmlArray("tag")]
[XmlArrayItem("string")]
public List<string> Tag { get; set; }
/// <summary>
/// 联系人类型取值范围LEGAL_PERSON法人CONTROLLER实际控制人AGENT代理人OTHER其他
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}