forked from loafle/openapi-generator-original
* [Slim] Decouple Api files into separated PHP Classes This enhancement required for modular testing and code coverage generating. * [Slim] Define all app routes in SlimRouter PHP Class. Generate new samples
31 lines
512 B
PHP
31 lines
512 B
PHP
<?php
|
|
/**
|
|
* Capitalization
|
|
*/
|
|
namespace OpenAPIServer\Model;
|
|
|
|
/**
|
|
* Capitalization
|
|
*/
|
|
class Capitalization {
|
|
|
|
/** @var string $smallCamel */
|
|
private $smallCamel;
|
|
|
|
/** @var string $capitalCamel */
|
|
private $capitalCamel;
|
|
|
|
/** @var string $smallSnake */
|
|
private $smallSnake;
|
|
|
|
/** @var string $capitalSnake */
|
|
private $capitalSnake;
|
|
|
|
/** @var string $sCAETHFlowPoints */
|
|
private $sCAETHFlowPoints;
|
|
|
|
/** @var string $aTTNAME Name of the pet */
|
|
private $aTTNAME;
|
|
|
|
}
|