getChannel
inline suspend fun RepostspaceClient.getChannel(crossinline block: GetChannelRequest.Builder.() -> Unit): GetChannelResponse
Displays information about a channel in a private re:Post.
Samples
fun main() {
//sampleStart
// GetChannel
val resp = repostspaceClient.getChannel {
spaceId = "SP1234567890abcdefghijkl"
channelId = "WS1234567890abcdefghijkl"
}
//sampleEnd
}