NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCampaignSubc...

31 lines
1.0 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>
/// AlipayMarketingCampaignSubcertQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCampaignSubcertQueryModel : AopObject
{
/// <summary>
/// 用户登录账号名邮箱或手机号。已知支付宝账号的活动触发调用中user_id与login_id至少有一个非空都非空时以user_id为准。
/// </summary>
[XmlElement("login_id")]
public string LoginId { get; set; }
/// <summary>
/// 营销平台凭证批次号
/// </summary>
[XmlElement("lot_num")]
public string LotNum { get; set; }
/// <summary>
/// 支付宝用户uid支付宝用户唯一标识。该参数用于已知支付宝账号的活动触发。user_id、login_id两个参数至少有一个非空。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}