OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
/
Examples
/
webhooks81
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:50 AM
rwxr-xr-x
📄
OpenApiSpec.php
942 bytes
08/07/2024 04:34:27 AM
rw-r--r--
📄
Pet.php
312 bytes
08/07/2024 04:34:27 AM
rw-r--r--
📄
webhooks.yaml
718 bytes
08/07/2024 04:34:27 AM
rw-r--r--
Editing: Pet.php
Close
<?php declare(strict_types=1); namespace OpenApi\Examples\Webhooks81; use OpenApi\Attributes as OAT; #[OAT\Schema(required: ['id', 'name'])] final class Pet { #[OAT\Property(format: 'int64')] public int $id; #[OAT\Property] public string $name; #[OAT\Property] public string $tag; }