| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * @license Apache 2.0
- */
- namespace Petstore30;
- /**
- * Class ApiResponse
- *
- * @package Petstore30
- *
- * @author Donii Sergii <doniysa@gmail.com>
- *
- * @OA\Schema(
- * description="Api response",
- * title="Api response"
- * )
- */
- class ApiResponse
- {
- /**
- * @OA\Property(
- * description="Code",
- * title="Code",
- * format="int32"
- * )
- *
- * @var int
- */
- private $code;
- /**
- * OA\Property(
- * description="Type",
- * title="Type",
- * )
- *
- * @var string
- */
- private $type;
- /**
- * @OA\Property(
- * description="Message",
- * title="Message"
- * )
- *
- * @var string
- */
- private $message;
- }
|