forked from loafle/openapi-generator-original
* Adds v2 spec additionalproperties examples, adds v3 spec nulllable model example, updates samples * Remaining samples updates * Adds csharp generator update to handle models with multilevel parent types, which works for the AdditionalPropertiesObject model, samples updated
61 lines
1.4 KiB
PHP
61 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* AdditionalPropertiesClass
|
|
*
|
|
* PHP version 7
|
|
*
|
|
* @package OpenAPIServer\Model
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
|
|
/**
|
|
* NOTE: This class is auto generated by the openapi generator program.
|
|
* https://github.com/openapitools/openapi-generator
|
|
*/
|
|
namespace OpenAPIServer\Model;
|
|
|
|
/**
|
|
* AdditionalPropertiesClass
|
|
*
|
|
* @package OpenAPIServer\Model
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
class AdditionalPropertiesClass
|
|
{
|
|
|
|
/** @var map[string,string] $mapString */
|
|
private $mapString;
|
|
|
|
/** @var map[string,float] $mapNumber */
|
|
private $mapNumber;
|
|
|
|
/** @var map[string,int] $mapInteger */
|
|
private $mapInteger;
|
|
|
|
/** @var map[string,bool] $mapBoolean */
|
|
private $mapBoolean;
|
|
|
|
/** @var map[string,int[]] $mapArrayInteger */
|
|
private $mapArrayInteger;
|
|
|
|
/** @var map[string,object[]] $mapArrayAnytype */
|
|
private $mapArrayAnytype;
|
|
|
|
/** @var map[string,map[string,string]] $mapMapString */
|
|
private $mapMapString;
|
|
|
|
/** @var map[string,map[string,object]] $mapMapAnytype */
|
|
private $mapMapAnytype;
|
|
|
|
/** @var object $anytype1 */
|
|
private $anytype1;
|
|
|
|
/** @var object $anytype2 */
|
|
private $anytype2;
|
|
|
|
/** @var object $anytype3 */
|
|
private $anytype3;
|
|
}
|