| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace PetstoreIO;
- /**
- * @SWG\Definition(type="object")
- */
- class ApiResponse
- {
- /**
- * @SWG\Property(format="int32")
- * @var int
- */
- public $code;
- /**
- * @SWG\Property
- * @var string
- */
- public $type;
- /**
- * @SWG\Property
- * @var string
- */
- public $message;
- }
|