
com.alipay.api.response.AlipayEcoMycarMerchantshopCommentBatchqueryResponse Maven / Gradle / Ivy
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.MerchantshopCommentResult;
import com.alipay.api.domain.MerchantshopCommentStatistic;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.eco.mycar.merchantshop.comment.batchquery response.
*
* @author auto create
* @since 1.0, 2023-05-31 04:05:53
*/
public class AlipayEcoMycarMerchantshopCommentBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3882862348191882997L;
/**
* 评论信息
*/
@ApiListField("comment_result")
@ApiField("merchantshop_comment_result")
private List commentResult;
/**
* 评论统计信息
*/
@ApiField("comment_statistic")
private MerchantshopCommentStatistic commentStatistic;
public void setCommentResult(List commentResult) {
this.commentResult = commentResult;
}
public List getCommentResult( ) {
return this.commentResult;
}
public void setCommentStatistic(MerchantshopCommentStatistic commentStatistic) {
this.commentStatistic = commentStatistic;
}
public MerchantshopCommentStatistic getCommentStatistic( ) {
return this.commentStatistic;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy