
com.alipay.api.domain.AlipayOpenSearchBoxOfflineModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 搜索直达下架
*
* @author auto create
* @since 1.0, 2023-06-12 16:51:11
*/
public class AlipayOpenSearchBoxOfflineModel extends AlipayObject {
private static final long serialVersionUID = 6754376753941864196L;
/**
* 搜索直达配置id
*/
@ApiField("box_id")
private String boxId;
/**
* 商户id,代运营模式下传入。代运营模式,需要服务商已获得商家"运营支付宝小程序"授权。
*/
@ApiField("merchant_id")
private String merchantId;
public String getBoxId() {
return this.boxId;
}
public void setBoxId(String boxId) {
this.boxId = boxId;
}
public String getMerchantId() {
return this.merchantId;
}
public void setMerchantId(String merchantId) {
this.merchantId = merchantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy