File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
samples/client/petstore/kotlin
src/main/kotlin/io/swagger/client/apis Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- 3.0.0 -SNAPSHOT
1
+ 3.0.1 -SNAPSHOT
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ class PetApi(basePath: kotlin.String = "http://petstore.swagger.io/v2") : ApiCli
90
90
@Suppress(" UNCHECKED_CAST" )
91
91
fun findPetsByStatus (status : kotlin.Array <kotlin.String >) : kotlin.Array <Pet > {
92
92
val localVariableBody: kotlin.Any? = null
93
- val localVariableQuery: MultiValueMap = mapOf (" status" to toMultiValue(status.toList(), " " ))
93
+ val localVariableQuery: MultiValueMap = mapOf (" status" to toMultiValue(status.toList(), " multi " ))
94
94
val localVariableHeaders: kotlin.collections.Map < kotlin.String ,kotlin.String > = mapOf ()
95
95
val localVariableConfig = RequestConfig (
96
96
RequestMethod .GET ,
@@ -122,7 +122,7 @@ class PetApi(basePath: kotlin.String = "http://petstore.swagger.io/v2") : ApiCli
122
122
@Suppress(" UNCHECKED_CAST" )
123
123
fun findPetsByTags (tags : kotlin.Array <kotlin.String >) : kotlin.Array <Pet > {
124
124
val localVariableBody: kotlin.Any? = null
125
- val localVariableQuery: MultiValueMap = mapOf (" tags" to toMultiValue(tags.toList(), " " ))
125
+ val localVariableQuery: MultiValueMap = mapOf (" tags" to toMultiValue(tags.toList(), " multi " ))
126
126
val localVariableHeaders: kotlin.collections.Map < kotlin.String ,kotlin.String > = mapOf ()
127
127
val localVariableConfig = RequestConfig (
128
128
RequestMethod .GET ,
You can’t perform that action at this time.
0 commit comments