me.chanjar.weixin.cp.api.WxCpCorpGroupService Maven / Gradle / Ivy
package me.chanjar.weixin.cp.api;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.cp.bean.corpgroup.WxCpCorpGroupCorp;
import java.util.List;
/**
* 企业互联相关接口
*
* @author libo <[email protected]>
* Created on 27/2/2023 9:57 PM
*/
public interface WxCpCorpGroupService {
/**
* List app share info list.
*
* @param agentId the agent id
* @param businessType the business type
* @param corpId the corp id
* @param limit the limit
* @param cursor the cursor
* @return the list
* @throws WxErrorException the wx error exception
*/
List listAppShareInfo(Integer agentId, Integer businessType, String corpId, Integer limit, String cursor) throws WxErrorException;
}