updateChannel
inline suspend fun RepostspaceClient.updateChannel(crossinline block: UpdateChannelRequest.Builder.() -> Unit): UpdateChannelResponse
Modifies an existing channel.
Samples
fun main() {
//sampleStart
// UpdateChannel
repostspaceClient.updateChannel {
spaceId = "SP1234567890abcdefghijkl"
channelId = "WS1234567890abcdefghijkl"
channelName = "Better Channel"
channelDescription = "Better channel description"
}
//sampleEnd
}