[kotlin][client] respect sortModelPropertiesByRequiredFlag (#5211)

This commit is contained in:
Bruno Coelho
2020-02-13 10:51:38 +00:00
committed by GitHub
parent 7fa3ce31ac
commit 9475556f47
2 changed files with 10 additions and 12 deletions

View File

@@ -27,14 +27,14 @@ import java.io.Serializable
*/
data class Pet (
@Json(name = "name")
val name: kotlin.String,
@Json(name = "photoUrls")
val photoUrls: kotlin.Array<kotlin.String>,
@Json(name = "id")
val id: kotlin.Long? = null,
@Json(name = "category")
val category: Category? = null,
@Json(name = "name")
val name: kotlin.String,
@Json(name = "photoUrls")
val photoUrls: kotlin.Array<kotlin.String>,
@Json(name = "tags")
val tags: kotlin.Array<Tag>? = null,
/* pet status in the store */