NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserInviteAwardReceiv...

37 lines
1.1 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>
/// AlipayUserInviteAwardReceiveModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserInviteAwardReceiveModel : AopObject
{
/// <summary>
/// 用户扫码抽奖输入的手机号手机号和用户ID必须有一个非空如果两者都有则优先取user_id的值作为后续发奖的用户账号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 外部业务方代码
/// </summary>
[XmlElement("out_biz_code")]
public string OutBizCode { get; set; }
/// <summary>
/// 外部业务号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 蚂蚁统一会员ID手机号和用户ID必须有一个非空如果两者都有则优先取user_id的值作为后续发奖的用户账号
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}