VideoContent

@Serializable
data class VideoContent(    val media: VideoFile,     val text: String? = null,     val textSources: TextSourcesList = emptyList(),     val spoilered: Boolean = false,     val quote: TextQuote? = null,     val showCaptionAboveMedia: Boolean = false) : VisualMediaGroupPartContent

Constructors

Link copied to clipboard
constructor(    media: VideoFile,     text: String? = null,     textSources: TextSourcesList = emptyList(),     spoilered: Boolean = false,     quote: TextQuote? = null,     showCaptionAboveMedia: Boolean = false)

Properties

Link copied to clipboard
open override val media: VideoFile
Link copied to clipboard
open override val quote: TextQuote? = null
Link copied to clipboard
open override val showCaptionAboveMedia: Boolean = false
Link copied to clipboard
open override val spoilered: Boolean = false
Link copied to clipboard
open override val text: String? = null
Link copied to clipboard
open override val textSources: TextSourcesList

Full list of TextSources

Functions

Link copied to clipboard
Link copied to clipboard
open override fun asTelegramMedia(): TelegramMediaVideo
Link copied to clipboard
open fun createResend(    chatId: ChatIdentifier,     messageThreadId: MessageThreadId? = chatId.threadId,     businessConnectionId: BusinessConnectionId? = chatId.businessConnectionId,     disableNotification: Boolean = false,     protectContent: Boolean = false,     allowPaidBroadcast: Boolean = false,     effectId: EffectId? = null,     replyToMessageId: MessageId?,     allowSendingWithoutReply: Boolean? = null,     replyMarkup: KeyboardMarkup? = null): Request<out AccessibleMessage>
open override fun createResend(    chatId: ChatIdentifier,     messageThreadId: MessageThreadId?,     businessConnectionId: BusinessConnectionId?,     disableNotification: Boolean,     protectContent: Boolean,     allowPaidBroadcast: Boolean,     effectId: EffectId?,     replyParameters: ReplyParameters?,     replyMarkup: KeyboardMarkup?): Request<ContentMessage<VideoContent>>