com.alipay.api.response.KoubeiItemExtitemQueryResponse 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.domain.ExtItem;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.item.extitem.query response.
*
* @author auto create
* @since 1.0, 2016-07-06 10:47:56
*/
public class KoubeiItemExtitemQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7592995497843728624L;
/**
* 商品信息
*/
@ApiField("extitem")
private ExtItem extitem;
public void setExtitem(ExtItem extitem) {
this.extitem = extitem;
}
public ExtItem getExtitem( ) {
return this.extitem;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy