using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CashCampaignInfo Data Structure.
///
[Serializable]
public class CashCampaignInfo : AopObject
{
///
/// 活动状态
///
[JsonProperty("camp_status")]
public string CampStatus { get; set; }
///
/// 现金红包名称
///
[JsonProperty("coupon_name")]
public string CouponName { get; set; }
///
/// 现金红包活动号
///
[JsonProperty("crowd_no")]
public string CrowdNo { get; set; }
///
/// 原始活动号,商户进行问题排查时提供
///
[JsonProperty("origin_crowd_no")]
public string OriginCrowdNo { get; set; }
}
}