using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayInsMarketingCampaignPrizeSendModel Data Structure.
///
[Serializable]
public class AlipayInsMarketingCampaignPrizeSendModel : AopObject
{
///
/// 账户id,如支付宝userId:2088102161835009
///
[XmlElement("account_id")]
public string AccountId { get; set; }
///
/// 账号类型
///
[XmlElement("account_type")]
public long AccountType { get; set; }
///
/// 营销保险活动Id
///
[XmlElement("campaign_id")]
public string CampaignId { get; set; }
///
/// 发奖规则因子
///
[XmlArray("factors")]
[XmlArrayItem("ins_mkt_factor_d_t_o")]
public List Factors { get; set; }
///
/// 发奖接口幂等字段
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 请求流水Id
///
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}