NewGaoKaoApi/PaymentSDK/AliPay/Domain/ContactInfo.cs

57 lines
1.6 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>
/// ContactInfo Data Structure.
/// </summary>
[Serializable]
public class ContactInfo : 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; }
}
}