Java 11 native HTTP client library (#3434)

* Initial commit of Java 11 native HTTP client port

* Rebase to master and add JSR305 for @Nullable

* Update samples with @Nullable annotations
This commit is contained in:
Benjamin Douglas
2019-07-25 18:59:21 -07:00
committed by William Cheng
parent 8253c28d6e
commit 43590582c5
190 changed files with 19200 additions and 7 deletions

View File

@@ -0,0 +1,22 @@
# AdditionalPropertiesClass
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**mapString** | **Map<String, String>** | | [optional]
**mapNumber** | [**Map<String, BigDecimal>**](BigDecimal.md) | | [optional]
**mapInteger** | **Map<String, Integer>** | | [optional]
**mapBoolean** | **Map<String, Boolean>** | | [optional]
**mapArrayInteger** | [**Map<String, List<Integer>>**](List.md) | | [optional]
**mapArrayAnytype** | [**Map<String, List<Object>>**](List.md) | | [optional]
**mapMapString** | [**Map<String, Map<String, String>>**](Map.md) | | [optional]
**mapMapAnytype** | [**Map<String, Map<String, Object>>**](Map.md) | | [optional]
**anytype1** | [**Object**](.md) | | [optional]
**anytype2** | [**Object**](.md) | | [optional]
**anytype3** | [**Object**](.md) | | [optional]