Bugfix(Perl): Support nested primitive types in ARRARY or HASH for basic object (#2713)

* support nested primitive types in ARRARY or HASH for basic object

* run bin/perl-petstore.sh and bin/openapi3/{LANG}-petstore.sh
This commit is contained in:
Min Kim
2019-04-23 04:19:16 -04:00
committed by William Cheng
parent a4be2c0bb4
commit 06fdc925a5
106 changed files with 4906 additions and 550 deletions

View File

@@ -0,0 +1,26 @@
# WWW::OpenAPIClient::Object::NullableClass
## Load the model package
```perl
use WWW::OpenAPIClient::Object::NullableClass;
```
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**integer_prop** | **int** | | [optional]
**number_prop** | **double** | | [optional]
**boolean_prop** | **boolean** | | [optional]
**string_prop** | **string** | | [optional]
**date_prop** | **DateTime** | | [optional]
**datetime_prop** | **DateTime** | | [optional]
**array_nullable_prop** | **ARRAY[object]** | | [optional]
**array_and_items_nullable_prop** | **ARRAY[object]** | | [optional]
**array_items_nullable** | **ARRAY[object]** | | [optional]
**object_nullable_prop** | **HASH[string,object]** | | [optional]
**object_and_items_nullable_prop** | **HASH[string,object]** | | [optional]
**object_items_nullable** | **HASH[string,object]** | | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)