Action

abstract class Action<ReturnType> : TgAction<ReturnType>

Action, see Actions article

Parameters

ReturnType

response type.

Inheritors

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
open override val Request<ReturnType>.parameters: MutableMap<String, JsonElement>

Functions

Link copied to clipboard
open suspend override fun Request<ReturnType>.doRequest(bot: TelegramBot)
Link copied to clipboard
open suspend override fun Request<ReturnType>.doRequestReturning(bot: TelegramBot): Deferred<Response<out ReturnType>>
Link copied to clipboard
inline suspend fun send(to: User, via: TelegramBot)
inline suspend fun send(to: Chat, via: TelegramBot)
suspend fun send(to: Long, via: TelegramBot)

suspend fun send(to: String, via: TelegramBot)

Make a request for action.

Link copied to clipboard
inline suspend fun sendAsync(to: User, via: TelegramBot): Deferred<Response<out ReturnType>>
inline suspend fun sendAsync(to: Chat, via: TelegramBot): Deferred<Response<out ReturnType>>
suspend fun sendAsync(to: Long, via: TelegramBot): Deferred<Response<out ReturnType>>

suspend fun sendAsync(to: String, via: TelegramBot): Deferred<Response<out ReturnType>>

Make a request for action returning its Response.

Link copied to clipboard
inline suspend fun sendReturning(to: User, via: TelegramBot): Deferred<Response<out ReturnType>>
inline suspend fun sendReturning(to: Chat, via: TelegramBot): Deferred<Response<out ReturnType>>
inline suspend fun sendReturning(to: Long, via: TelegramBot): Deferred<Response<out ReturnType>>
inline suspend fun sendReturning(to: String, via: TelegramBot): Deferred<Response<out ReturnType>>
Link copied to clipboard

Payload to make response for the webhook request as described there.