| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace PetstoreIO;
- /**
- * @OA\Schema(required={"name", "photoUrls"}, @OA\Xml(name="Pet"))
- */
- class Pet
- {
- /**
- * @OA\Property(format="int64")
- * @var int
- */
- public $id;
- /**
- * @OA\Property(example="doggie")
- * @var string
- */
- public $name;
- /**
- * @var Category
- * @OA\Property()
- */
- public $category;
- /**
- * @var string[]
- * @OA\Property(@OA\Xml(name="photoUrl", wrapped=true))
- */
- public $photoUrls;
- /**
- * @var Tag[]
- * @OA\Property(@OA\Xml(name="tag", wrapped=true))
- */
- public $tags;
- /**
- * pet status in the store
- * @var string
- * @OA\Property(enum={"available", "pending", "sold"})
- */
- public $status;
- }
|