NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserAccountNewbieBene...

49 lines
1.3 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>
/// AlipayUserAccountNewbieBenefitConsultModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserAccountNewbieBenefitConsultModel : AopObject
{
/// <summary>
/// 扩展信息json格式字符串。
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 手机号码。和user_id二选一必填。
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 模式,用于决策当前请求包含哪些人君。
/// </summary>
[XmlElement("mode")]
public string Mode { get; set; }
/// <summary>
/// 商户支付宝ID
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// 场景码
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
/// <summary>
/// 蚂蚁统一会员ID。和mobile二选一必填。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}