Fix duplicated json names in Conference pojo

This commit is contained in:
Mikołaj Pich 2023-06-01 13:37:57 +02:00
parent 567679d1a0
commit d1486bade5
2 changed files with 2 additions and 4 deletions

View file

@ -18,7 +18,7 @@ ext {
moshi = "1.13.0"
}
version = "2.0.7"
version = "2.0.8-SNAPSHOT"
group = "io.github.wulkanowy"
nexusPublishing {

View file

@ -16,11 +16,10 @@ data class Conference(
val place: String,
@SerialName("TematZebrania")
@JsonNames("opis")
val topic: String,
@SerialName("Agenda")
@JsonNames("opis") // todo
@JsonNames("opis")
val agenda: String,
@SerialName("ObecniNaZebraniu")
@ -36,6 +35,5 @@ data class Conference(
val id: Int,
@Transient
@JsonNames("dataCzas") // todo
val date: LocalDateTime = LocalDateTime.now(),
)