using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsSceneCouponSendModel Data Structure.
///
[Serializable]
public class AlipayInsSceneCouponSendModel : AopObject
{
///
/// 渠道账号对应的uid;如果证件类型字段没填则必填
///
[JsonProperty("channel_user_id")]
public string ChannelUserId { get; set; }
///
/// 渠道账号来源;1:支付宝账号 2:淘宝账号;如果证件类型字段没填则必填
///
[JsonProperty("channel_user_source")]
public string ChannelUserSource { get; set; }
///
/// 活动维度id; 商户PID值
///
[JsonProperty("dimension_id")]
public string DimensionId { get; set; }
///
/// 活动维度; GOODS:淘宝商品,ANT_PID:蚂蚁商户PID
///
[JsonProperty("dimension_type")]
public string DimensionType { get; set; }
///
/// 市场类型; TAOBAO:淘宝平台,ANT: 蚂蚁平台
///
[JsonProperty("market_type")]
public string MarketType { get; set; }
///
/// 商户生成的外部业务号,必须保证唯一,幂等控制
///
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 服务场景; propertyPaySuccess:蚂蚁物业支付成功页面
///
[JsonProperty("service_scenario")]
public string ServiceScenario { get; set; }
}
}