diff --git a/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/gifts/GiftInfo.kt b/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/gifts/GiftInfo.kt index b0c77d8d38..9f413c1bc8 100644 --- a/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/gifts/GiftInfo.kt +++ b/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/gifts/GiftInfo.kt @@ -24,7 +24,7 @@ data class GiftInfo private constructor( @SerialName(textField) val text: String? = null, @SerialName(entitiesField) - val entities: RawMessageEntities, + val entities: RawMessageEntities = emptyList(), @SerialName(isPrivateField) val isPrivate: Boolean = false ) {