All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayMerchantGroupAssistantMsgBatchqueryResponse 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.AssistantMsgRecordVO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.merchant.group.assistant.msg.batchquery response.
 * 
 * @author auto create
 * @since 1.0, 2024-09-11 15:37:15
 */
public class AlipayMerchantGroupAssistantMsgBatchqueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 8172423293626799655L;

	/** 
	 * 商家发送的小助手定向消息记录列表
	 */
	@ApiListField("msg_record_list")
	@ApiField("assistant_msg_record_v_o")
	private List msgRecordList;

	/** 
	 * 商家配置小助手定向消息总条数
	 */
	@ApiField("total_count")
	private Long totalCount;

	public void setMsgRecordList(List msgRecordList) {
		this.msgRecordList = msgRecordList;
	}
	public List getMsgRecordList( ) {
		return this.msgRecordList;
	}

	public void setTotalCount(Long totalCount) {
		this.totalCount = totalCount;
	}
	public Long getTotalCount( ) {
		return this.totalCount;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy