listChannels
inline suspend fun RepostspaceClient.listChannels(crossinline block: ListChannelsRequest.Builder.() -> Unit): ListChannelsResponse
Returns the list of channel within a private re:Post with some information about each channel.
Samples
fun main() {
//sampleStart
// ListChannels
val resp = repostspaceClient.listChannels {
spaceId = "SP1234567890abcdefghijkl"
}
//sampleEnd
}