28 lines
325 B
PHP
28 lines
325 B
PHP
|
<?php
|
||
|
|
||
|
namespace petstore;
|
||
|
|
||
|
/**
|
||
|
* @OA\Schema(required={"id", "name"})
|
||
|
*/
|
||
|
class Pet
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @OA\Property(type="integer", format="int64")
|
||
|
*/
|
||
|
public $id;
|
||
|
|
||
|
/**
|
||
|
* @OA\Property()
|
||
|
* @var string
|
||
|
*/
|
||
|
public $name;
|
||
|
|
||
|
/**
|
||
|
* @OA\Property()
|
||
|
* @var string
|
||
|
*/
|
||
|
public $tag;
|
||
|
}
|