kz.btsd.messenger.bot.api.model.update.InvitedToChannel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bot-api-contract Show documentation
Show all versions of bot-api-contract Show documentation
API contract for AITU messenger bots
package kz.btsd.messenger.bot.api.model.update
import io.swagger.annotations.ApiModel
@ApiModel(parent = Update::class)
data class InvitedToChannel(
override val updateId: String,
val channelId: String
) : Update(updateId, "InvitedToChannel")