
com.alipay.api.domain.KoubeiMarketingCampaignItemBatchqueryModel 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, 2016-12-06 10:03:04
*/
public class KoubeiMarketingCampaignItemBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 8487472478391173489L;
/**
* 操作人id,必须和operator_type配对存在,不填时默认是商户
*/
@ApiField("operator_id")
private String operatorId;
/**
* 操作人类型,有以下值可填:MER(外部商户),MER_STAFF(外部商户操作员),PROVIDER(外部服务商),PROVIDER_STAFF(外部服务商员工),默认不需要填这个字段,默认为MER
*/
@ApiField("operator_type")
private String operatorType;
public String getOperatorId() {
return this.operatorId;
}
public void setOperatorId(String operatorId) {
this.operatorId = operatorId;
}
public String getOperatorType() {
return this.operatorType;
}
public void setOperatorType(String operatorType) {
this.operatorType = operatorType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy