You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: samples/client/petstore/kotlin-multiplatform/src/commonMain/kotlin/org/openapitools/client/apis/UserApi.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ class UserApi @UseExperimental(UnstableDefault::class) constructor(
79
79
80
80
val localVariableAuthNames = listOf<String>()
81
81
82
-
val localVariableBody =CreateUsersWithArrayInputRequest(body.asList())
82
+
val localVariableBody =CreateUsersWithArrayInputRequest(body)
83
83
84
84
val localVariableQuery = mutableMapOf<String, List<String>>()
85
85
@@ -120,7 +120,7 @@ class UserApi @UseExperimental(UnstableDefault::class) constructor(
120
120
121
121
val localVariableAuthNames = listOf<String>()
122
122
123
-
val localVariableBody =CreateUsersWithListInputRequest(body.asList())
123
+
val localVariableBody =CreateUsersWithListInputRequest(body)
124
124
125
125
val localVariableQuery = mutableMapOf<String, List<String>>()
Copy file name to clipboardExpand all lines: samples/openapi3/client/petstore/kotlin-multiplatform/src/commonMain/kotlin/org/openapitools/client/apis/UserApi.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ class UserApi @UseExperimental(UnstableDefault::class) constructor(
79
79
80
80
val localVariableAuthNames = listOf<String>()
81
81
82
-
val localVariableBody =CreateUsersWithArrayInputRequest(user.asList())
82
+
val localVariableBody =CreateUsersWithArrayInputRequest(user)
83
83
84
84
val localVariableQuery = mutableMapOf<String, List<String>>()
85
85
@@ -120,7 +120,7 @@ class UserApi @UseExperimental(UnstableDefault::class) constructor(
120
120
121
121
val localVariableAuthNames = listOf<String>()
122
122
123
-
val localVariableBody =CreateUsersWithListInputRequest(user.asList())
123
+
val localVariableBody =CreateUsersWithListInputRequest(user)
124
124
125
125
val localVariableQuery = mutableMapOf<String, List<String>>()
0 commit comments