commonMain.json.response.FollowedChannelResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-rest Show documentation
Show all versions of kord-rest Show documentation
Idiomatic Kotlin Wrapper for The Discord API
The newest version!
package dev.kord.rest.json.response
import dev.kord.common.entity.Snowflake
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
public data class FollowedChannelResponse(
@SerialName("channel_id")
val channelId: Snowflake,
@SerialName("webhook_id")
val webhookId: Snowflake
)