
com.alipay.api.domain.AlipayMarketingCampaignDrawcampTriggerModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 营销抽奖活动触发
*
* @author auto create
* @since 1.0, 2017-07-31 14:54:41
*/
public class AlipayMarketingCampaignDrawcampTriggerModel extends AlipayObject {
private static final long serialVersionUID = 4819251491645631536L;
/**
* 用户参与活动的手机号(如果是用户直接输入手机号的活动形式,该项必填,作为识别用户的依据)
*/
@ApiField("bind_mobile")
private String bindMobile;
/**
* 活动id
*/
@ApiField("camp_id")
private String campId;
/**
* 请求来源,目前支持:1微信 2 微博 3虾米 4淘宝 5天猫
*/
@ApiField("camp_source")
private Long campSource;
/**
* 渠道来源参数
*/
@ApiField("channel_info")
private String channelInfo;
/**
* 客户端ip
*/
@ApiField("client_ip")
private String clientIp;
/**
* rds嵌入页面的js收集的用户行为数据
*/
@ApiField("json_ua")
private String jsonUa;
/**
* 用户登录号/用户uid,非脱敏账号
*/
@ApiField("user_id")
private String userId;
public String getBindMobile() {
return this.bindMobile;
}
public void setBindMobile(String bindMobile) {
this.bindMobile = bindMobile;
}
public String getCampId() {
return this.campId;
}
public void setCampId(String campId) {
this.campId = campId;
}
public Long getCampSource() {
return this.campSource;
}
public void setCampSource(Long campSource) {
this.campSource = campSource;
}
public String getChannelInfo() {
return this.channelInfo;
}
public void setChannelInfo(String channelInfo) {
this.channelInfo = channelInfo;
}
public String getClientIp() {
return this.clientIp;
}
public void setClientIp(String clientIp) {
this.clientIp = clientIp;
}
public String getJsonUa() {
return this.jsonUa;
}
public void setJsonUa(String jsonUa) {
this.jsonUa = jsonUa;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy