
com.alipay.api.response.KoubeiContentCommentDataBatchqueryResponse 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.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.CommentOpenModel;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.content.comment.data.batchquery response.
*
* @author auto create
* @since 1.0, 2017-03-03 10:40:31
*/
public class KoubeiContentCommentDataBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4113794861548858891L;
/**
* 评价结果列表
*/
@ApiListField("comments")
@ApiField("comment_open_model")
private List comments;
/**
* 当前查询条件下评价总数
*/
@ApiField("count")
private Long count;
public void setComments(List comments) {
this.comments = comments;
}
public List getComments( ) {
return this.comments;
}
public void setCount(Long count) {
this.count = count;
}
public Long getCount( ) {
return this.count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy