com.alipay.api.response.KoubeiItemCreateResponse 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
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.item.create response.
*
* @author auto create
* @since 1.0, 2017-08-31 21:06:27
*/
public class KoubeiItemCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 8688611664535213942L;
/**
* 口碑体系内部商品的唯一标识,后续的增删改查接口都使用该ID作为主键
*/
@ApiField("item_id")
private String itemId;
/**
* 即入参中的request_id
*/
@ApiField("request_id")
private String requestId;
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getItemId( ) {
return this.itemId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRequestId( ) {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy