11package com.es.model.detail
22
3- import com.es.model.search.BGGGameItemName
43import com.es.model.BGGPropertyValue
4+ import com.es.model.search.BGGGameItemName
55import com.fasterxml.jackson.annotation.JsonIgnoreProperties
66import com.fasterxml.jackson.annotation.JsonProperty
77import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper
@@ -12,63 +12,50 @@ data class BGGGameDetailItem(
1212 @JacksonXmlProperty(isAttribute = true )
1313 @JsonProperty(" id" )
1414 val id : String ,
15-
1615 @JacksonXmlProperty(isAttribute = true )
1716 @JsonProperty(" type" )
1817 val type : String ,
19-
2018 @JacksonXmlProperty(localName = " thumbnail" )
2119 @JsonProperty(" thumbnail" )
2220 val thumbnail : String? = null ,
23-
2421 @JacksonXmlProperty(localName = " image" )
2522 @JsonProperty(" image" )
2623 val image : String? = null ,
27-
2824 @JacksonXmlElementWrapper(useWrapping = false )
2925 @JacksonXmlProperty(localName = " name" )
3026 @JsonProperty(" names" )
3127 val names : List <BGGGameItemName >? = null ,
32-
3328 @JacksonXmlProperty(localName = " description" )
3429 @JsonProperty(" description" )
3530 val description : String? = null ,
36-
3731 @JacksonXmlElementWrapper(useWrapping = false )
3832 @JacksonXmlProperty(localName = " yearpublished" )
3933 @JsonProperty(" yearpublished" )
4034 val yearPublished : BGGPropertyValue ? = null ,
41-
4235 @JacksonXmlElementWrapper(useWrapping = false )
4336 @JacksonXmlProperty(localName = " minplayers" )
4437 @JsonProperty(" minplayers" )
4538 val minPlayers : BGGPropertyValue ? = null ,
46-
4739 @JacksonXmlElementWrapper(useWrapping = false )
4840 @JacksonXmlProperty(localName = " maxplayers" )
4941 @JsonProperty(" maxplayers" )
5042 val maxPlayers : BGGPropertyValue ? = null ,
51-
5243 @JacksonXmlElementWrapper(useWrapping = false )
5344 @JacksonXmlProperty(localName = " playingtime" )
5445 @JsonProperty(" playingtime" )
5546 val playingTime : BGGPropertyValue ? = null ,
56-
5747 @JacksonXmlElementWrapper(useWrapping = false )
5848 @JacksonXmlProperty(localName = " minplaytime" )
5949 @JsonProperty(" minplaytime" )
6050 val minPlayTime : BGGPropertyValue ? = null ,
61-
6251 @JacksonXmlElementWrapper(useWrapping = false )
6352 @JacksonXmlProperty(localName = " maxplaytime" )
6453 @JsonProperty(" maxplaytime" )
6554 val maxPlayTime : BGGPropertyValue ? = null ,
66-
6755 @JacksonXmlElementWrapper(useWrapping = false )
6856 @JacksonXmlProperty(localName = " minage" )
6957 @JsonProperty(" minage" )
7058 val minAge : BGGPropertyValue ? = null ,
71-
7259 @JacksonXmlElementWrapper(useWrapping = false )
7360 @JacksonXmlProperty(localName = " link" )
7461 @JsonProperty(" links" )
0 commit comments