Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ContactPersonInfo.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

37 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ContactPersonInfo Data Structure.
/// </summary>
[Serializable]
public class ContactPersonInfo : AopObject
{
/// <summary>
/// 联系人邮箱地址,入驻申请审核结果会发送至该邮箱
/// </summary>
[JsonProperty("contact_email")]
public string ContactEmail { get; set; }
/// <summary>
/// 联系人手机号,入驻申请结果会通过短信的形式发送至该手机号码
/// </summary>
[JsonProperty("contact_mobile")]
public string ContactMobile { get; set; }
/// <summary>
/// 企业联系人名称
/// </summary>
[JsonProperty("contact_name")]
public string ContactName { get; set; }
/// <summary>
/// 联系人类型MERCHANT_CONTACT (普通联系人),DATA_RETURN (数据反馈联系人),PROT_CONTACT(客服人员),OBJECTION_HANDLE
/// (异议处理联系人)如不填默认为MERCHANT_CONTACT
/// </summary>
[JsonProperty("contact_type")]
public string ContactType { get; set; }
}
}