NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOverseasTravelGkaCamp...

31 lines
997 B
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>
/// AlipayOverseasTravelGkaCampprizeQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOverseasTravelGkaCampprizeQueryModel : AopObject
{
/// <summary>
/// 活动id获取方式联系支付宝运营同学获取适用于支付宝平台活动由合作伙伴调用触发
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 用户参与活动的手机号
/// </summary>
[XmlElement("login_mobile")]
public string LoginMobile { get; set; }
/// <summary>
/// 支付宝用户uid支付宝用户唯一标识。user_id、bind_mobile两个参数至少有一个非空。使用优先级为 user_id > bind_mobile
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}