mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-08 20:36:10 +00:00
Change default package name value for kotlin client (#382)
* Move pom.xml to sample.ci * Regenerate 'kotlin-threetenbp' example * Add build to gitignore * Change default value for Kotlin * Regenerate kotlin-string client * Regenerate kotlin-threetenbp client * Regenerate 'samples/client/petstore/kotlin'
This commit is contained in:
committed by
William Cheng
parent
e2d6f7c88f
commit
d35bf1a388
@@ -25,8 +25,8 @@ This can only be done by the logged in user.
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val user : User = // User | Created user object
|
||||
@@ -69,8 +69,8 @@ Creates list of users with given input array
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val user : kotlin.Array<User> = // kotlin.Array<User> | List of user object
|
||||
@@ -113,8 +113,8 @@ Creates list of users with given input array
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val user : kotlin.Array<User> = // kotlin.Array<User> | List of user object
|
||||
@@ -159,8 +159,8 @@ This can only be done by the logged in user.
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val username : kotlin.String = username_example // kotlin.String | The name that needs to be deleted
|
||||
@@ -203,8 +203,8 @@ Get user by user name
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val username : kotlin.String = username_example // kotlin.String | The name that needs to be fetched. Use user1 for testing.
|
||||
@@ -248,8 +248,8 @@ Logs user into the system
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val username : kotlin.String = username_example // kotlin.String | The user name for login
|
||||
@@ -295,8 +295,8 @@ Logs out current logged in user session
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
try {
|
||||
@@ -337,8 +337,8 @@ This can only be done by the logged in user.
|
||||
### Example
|
||||
```kotlin
|
||||
// Import classes:
|
||||
//import io.swagger.client.infrastructure.*
|
||||
//import io.swagger.client.models.*
|
||||
//import org.openapitools.client.infrastructure.*
|
||||
//import org.openapitools.client.models.*
|
||||
|
||||
val apiInstance = UserApi()
|
||||
val username : kotlin.String = username_example // kotlin.String | name that need to be deleted
|
||||
|
||||
Reference in New Issue
Block a user