com.alipay.api.response.AlipayMerchantGroupAssistantServiceBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.ServiceAssistantRecordVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.merchant.group.assistant.service.batchquery response.
*
* @author auto create
* @since 1.0, 2024-09-05 18:09:36
*/
public class AlipayMerchantGroupAssistantServiceBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3762155737486693376L;
/**
* 小助手快捷服务记录列表
*/
@ApiListField("assistant_record_list")
@ApiField("service_assistant_record_v_o")
private List assistantRecordList;
/**
* 商家配置小助手快捷服务总条数
*/
@ApiField("total_count")
private Long totalCount;
public void setAssistantRecordList(List assistantRecordList) {
this.assistantRecordList = assistantRecordList;
}
public List getAssistantRecordList( ) {
return this.assistantRecordList;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public Long getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy