WebhookInfo

data class WebhookInfo(    val url: String,     val awaitDelivery: Int,     val maxConnections: Int = 40,     val customCertificate: Boolean = false,     val allowedUpdates: List<String> = ALL_UPDATES_LIST,     val lastErrorDate: TelegramDate? = null,     val lastSynchronizationErrorDate: TelegramDate? = null,     val lastErrorMessage: String? = null)

Constructors

Link copied to clipboard
fun WebhookInfo(    url: String,     awaitDelivery: Int,     maxConnections: Int = 40,     customCertificate: Boolean = false,     allowedUpdates: List<String> = ALL_UPDATES_LIST,     lastErrorDate: TelegramDate? = null,     lastSynchronizationErrorDate: TelegramDate? = null,     lastErrorMessage: String? = null)

Properties

Link copied to clipboard
val allowedUpdates: List<String>
Link copied to clipboard
val awaitDelivery: Int
Link copied to clipboard
val customCertificate: Boolean = false
Link copied to clipboard
val hasError: Boolean
Link copied to clipboard
val isNotUseWebhook: Boolean
Link copied to clipboard
val lastErrorDate: TelegramDate? = null
Link copied to clipboard
val lastErrorMessage: String? = null
Link copied to clipboard
val lastSynchronizationErrorDate: TelegramDate? = null
Link copied to clipboard
val maxConnections: Int = 40
Link copied to clipboard
val url: String