
com.alipay.api.domain.KoubeiAdvertCommissionMissionPromoteModel 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-02-15 10:06:08
*/
public class KoubeiAdvertCommissionMissionPromoteModel extends AlipayObject {
private static final long serialVersionUID = 3164171372516536623L;
/**
* 推广主键
identify_type=mission-值必须是任务ID
identify_type=voucher-值必须是券ID
*/
@ApiField("identify")
private String identify;
/**
* 推广主键类型
mission-任务
voucher-券
*/
@ApiField("identify_type")
private String identifyType;
/**
* 指定推广活动的名称
*/
@ApiField("name")
private String name;
public String getIdentify() {
return this.identify;
}
public void setIdentify(String identify) {
this.identify = identify;
}
public String getIdentifyType() {
return this.identifyType;
}
public void setIdentifyType(String identifyType) {
this.identifyType = identifyType;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy