This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.openapitools.client; | |
import org.openapitools.client.api.DefaultApi; | |
import java.time.OffsetDateTime; | |
public class Main { | |
public static void main(String[] args) { | |
DefaultApi apiInstance = new DefaultApi(new ApiClient()); | |
String result = apiInstance.anythingGet(OffsetDateTime.now()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
version: 1.0.0 | |
title: initialization demo | |
paths: | |
/: | |
get: | |
responses: | |
'200': | |
description: dummy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
version: 1.0.0 | |
description: dummy | |
title: dummy | |
paths: | |
/: | |
post: | |
requestBody: | |
content: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/main/java/org/openapitools/client/model/Animal.java b/src/main/java/org/openapitools/client/model/Animal.java | |
index 5f33e7f..d2f8fe6 100644 | |
--- a/src/main/java/org/openapitools/client/model/Animal.java | |
+++ b/src/main/java/org/openapitools/client/model/Animal.java | |
@@ -108,13 +108,13 @@ public class Animal { | |
public static final String SERIALIZED_NAME_PET_TYPE = "petType"; | |
@SerializedName(SERIALIZED_NAME_PET_TYPE) | |
- @javax.annotation.Nonnull | |
protected PetTypeEnum petType; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/pom.xml b/pom.xml | |
index 402a6a8..0fedd31 100644 | |
--- a/pom.xml | |
+++ b/pom.xml | |
@@ -636,7 +636,7 @@ | |
</configOptions> | |
<importMappings> | |
- <importMapping>PersonalStatusType=at.swgt.model.PersonalStatusType</importMapping> | |
+<!-- <importMapping>PersonalStatusType=at.swgt.model.PersonalStatusType</importMapping>--> |
OlderNewer