1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-02 22:59:48 +00:00
This commit is contained in:
2025-08-04 01:25:16 +06:00
parent 4ba9c8ee97
commit fbc7088dad
2 changed files with 4 additions and 1 deletions

View File

@@ -2,6 +2,9 @@
## 27.1.1
* `Core`:
* Make `BusinessLocation#location` optional (fix of [#990](https://github.com/InsanusMokrassar/ktgbotapi/issues/990))
## 27.1.0
* `Core`:

View File

@@ -11,5 +11,5 @@ data class BusinessLocation(
@SerialName(addressField)
val address: String,
@SerialName(locationField)
val location: StaticLocation
val location: StaticLocation? = null
)