AnaTofuZ a9e63f4ce3
Perl: Type coercion for the JSON conversion part of Perl (#12891)
* Perl: separate date and DateTime

- Since the json values to be returned are different for date and DateTime, they are managed separately

* Per: Enforcing Perl types to openAPI types

Perl JSON values return different types depending on the context, so look at openapi's type and modify the type.

* generate samples

* generate docs

* add perl test (json types)
2022-07-16 22:18:51 +08:00

1.1 KiB

WWW::OpenAPIClient::Object::NullableClass

Load the model package

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 DATE [optional]
datetime_prop DATE_TIME [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] [Back to API list] [Back to README]