This commit is contained in:
InsanusMokrassar 2020-05-15 18:39:12 +06:00
parent efc2681da8
commit 0532dbb1ae
1 changed files with 10 additions and 0 deletions

View File

@ -34,6 +34,16 @@ fun SetWebhook(
allowedUpdates
)
fun SetWebhook(
url: String,
certificate: InputFile,
maxAllowedConnections: Int? = null,
allowedUpdates: List<String>? = null
): Request<Boolean> = when (certificate) {
is MultipartFile -> SetWebhook(url, certificate as MultipartFile, maxAllowedConnections, allowedUpdates)
is FileId -> SetWebhook(url, certificate as FileId, maxAllowedConnections, allowedUpdates)
}
fun SetWebhook(
url: String,
maxAllowedConnections: Int? = null,