org.microjservice.lark.api.ChatApi.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lark-api Show documentation
Show all versions of lark-api Show documentation
Java/Kotlin library for larksuite api
package org.microjservice.lark.api
import io.micronaut.http.annotation.Get
import io.micronaut.http.client.annotation.Client
import org.microjservice.lark.api.models.GroupPage
import org.microjservice.lark.api.models.BaseResponse
/**
* Chat Api
*
* @author Coder Yellow
* @since 0.1.0
*/
@Client(value ="\${lark.endpoint}/chat/v4")
interface ChatApi {
@Get("/list")
fun list(): BaseResponse
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy