NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCampaignCash...

43 lines
1.6 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>
/// AlipayMarketingCampaignCashTriggerModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCampaignCashTriggerModel : AopObject
{
/// <summary>
/// 现金活动号
/// </summary>
[XmlElement("crowd_no")]
public string CrowdNo { get; set; }
/// <summary>
/// 用户登录账号名邮箱或手机号。user_id与login_id至少有一个非空都非空时以user_id为准。
/// </summary>
[XmlElement("login_id")]
public string LoginId { get; set; }
/// <summary>
/// 此字段如果传入金额就忽略prize_type算法按照传入的金额发奖。如果不传或者小于等于0则按照活动创建时指定的prize_type为fixed或者random算法发奖
/// </summary>
[XmlElement("order_price")]
public string OrderPrice { get; set; }
/// <summary>
/// 领取红包的外部业务号,只由可由字母、数字、下划线组成。同一个活动中不可重复,相同的外部业务号会被幂等并返回之前的结果。不填时,系统会生成一个默认固定的外部业务号。
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 用户唯一标识userId。user_id与login_id至少有一个非空都非空时以user_id为准。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}