mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-03 17:00:43 +00:00
This commit is contained in:
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
@@ -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
|
||||
|
||||
) {
|
||||
|
||||
Reference in New Issue
Block a user