fix #11353 use @get:JsonProperty instead of @field:JsonProperty (#19186)

This commit is contained in:
Peter Storch
2024-07-17 13:06:32 +02:00
committed by GitHub
parent 045f4b6067
commit 2f5529a184
72 changed files with 297 additions and 297 deletions

View File

@@ -29,10 +29,10 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class Bird (
@field:JsonProperty("size")
@get:JsonProperty("size")
val propertySize: kotlin.String? = null,
@field:JsonProperty("color")
@get:JsonProperty("color")
val color: kotlin.String? = null
) {

View File

@@ -29,10 +29,10 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class Category (
@field:JsonProperty("id")
@get:JsonProperty("id")
val id: kotlin.Long? = null,
@field:JsonProperty("name")
@get:JsonProperty("name")
val name: kotlin.String? = null
) {

View File

@@ -36,28 +36,28 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class DefaultValue (
@field:JsonProperty("array_string_enum_ref_default")
@get:JsonProperty("array_string_enum_ref_default")
val arrayStringEnumRefDefault: kotlin.collections.List<StringEnumRef>? = null,
@field:JsonProperty("array_string_enum_default")
@get:JsonProperty("array_string_enum_default")
val arrayStringEnumDefault: kotlin.collections.List<DefaultValue.ArrayStringEnumDefault>? = null,
@field:JsonProperty("array_string_default")
@get:JsonProperty("array_string_default")
val arrayStringDefault: kotlin.collections.List<kotlin.String>? = arrayListOf("failure","skipped"),
@field:JsonProperty("array_integer_default")
@get:JsonProperty("array_integer_default")
val arrayIntegerDefault: kotlin.collections.List<kotlin.Int>? = arrayListOf(1,3),
@field:JsonProperty("array_string")
@get:JsonProperty("array_string")
val arrayString: kotlin.collections.List<kotlin.String>? = null,
@field:JsonProperty("array_string_nullable")
@get:JsonProperty("array_string_nullable")
val arrayStringNullable: kotlin.collections.List<kotlin.String>? = null,
@field:JsonProperty("array_string_extension_nullable")
@get:JsonProperty("array_string_extension_nullable")
val arrayStringExtensionNullable: kotlin.collections.List<kotlin.String>? = null,
@field:JsonProperty("string_nullable")
@get:JsonProperty("string_nullable")
val stringNullable: kotlin.String? = null
) {

View File

@@ -30,13 +30,13 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class NumberPropertiesOnly (
@field:JsonProperty("number")
@get:JsonProperty("number")
val number: java.math.BigDecimal? = null,
@field:JsonProperty("float")
@get:JsonProperty("float")
val float: kotlin.Float? = null,
@field:JsonProperty("double")
@get:JsonProperty("double")
val double: kotlin.Double? = null
) {

View File

@@ -35,23 +35,23 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class Pet (
@field:JsonProperty("name")
@get:JsonProperty("name")
val name: kotlin.String,
@field:JsonProperty("photoUrls")
@get:JsonProperty("photoUrls")
val photoUrls: kotlin.collections.List<kotlin.String>,
@field:JsonProperty("id")
@get:JsonProperty("id")
val id: kotlin.Long? = null,
@field:JsonProperty("category")
@get:JsonProperty("category")
val category: Category? = null,
@field:JsonProperty("tags")
@get:JsonProperty("tags")
val tags: kotlin.collections.List<Tag>? = null,
/* pet status in the store */
@field:JsonProperty("status")
@get:JsonProperty("status")
val status: Pet.Status? = null
) {

View File

@@ -30,10 +30,10 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class Query (
/* Query */
@field:JsonProperty("id")
@get:JsonProperty("id")
val id: kotlin.Long? = null,
@field:JsonProperty("outcomes")
@get:JsonProperty("outcomes")
val outcomes: kotlin.collections.List<Query.Outcomes>? = null
) {

View File

@@ -29,10 +29,10 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class Tag (
@field:JsonProperty("id")
@get:JsonProperty("id")
val id: kotlin.Long? = null,
@field:JsonProperty("name")
@get:JsonProperty("name")
val name: kotlin.String? = null
) {

View File

@@ -28,7 +28,7 @@ import com.fasterxml.jackson.annotation.JsonProperty
data class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter (
@field:JsonProperty("values")
@get:JsonProperty("values")
val propertyValues: kotlin.collections.List<kotlin.String>? = null
) {