
com.alipay.api.domain.KbadvertSmartPromoResponse 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-03-29 16:53:54
*/
public class KbadvertSmartPromoResponse extends AlipayObject {
private static final long serialVersionUID = 6219429941565329886L;
/**
* 智能营销分组ID
*/
@ApiField("group_id")
private String groupId;
/**
* 智能营销方案ID
*/
@ApiField("plan_id")
private String planId;
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getPlanId() {
return this.planId;
}
public void setPlanId(String planId) {
this.planId = planId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy