Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
openai-php
/
client
/
src
/
Responses
/
Models
Location:
/home/zoteqbgb/public_html/vendor/openai-php/client/src/Responses/Models
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: DeleteResponse.php
<?php declare(strict_types=1); namespace OpenAI\Responses\Models; use OpenAI\Contracts\ResponseContract; use OpenAI\Contracts\ResponseHasMetaInformationContract; use OpenAI\Responses\Concerns\ArrayAccessible; use OpenAI\Responses\Concerns\HasMetaInformation; use OpenAI\Responses\Meta\MetaInformation; use OpenAI\Testing\Responses\Concerns\Fakeable; /** * @implements ResponseContract<array{id: string, object: string, deleted: bool}> */ final class DeleteResponse implements ResponseContract, ResponseHasMetaInformationContract { /** * @use ArrayAccessible<array{id: string, object: string, deleted: bool}> */ use ArrayAccessible; use Fakeable; use HasMetaInformation; private function __construct( public readonly string $id, public readonly string $object, public readonly bool $deleted, private readonly MetaInformation $meta, ) {} /** * Acts as static factory, and returns a new Response instance. * * @param array{id: string, object: string, deleted: bool} $attributes */ public static function from(array $attributes, MetaInformation $meta): self { return new self( $attributes['id'], $attributes['object'], $attributes['deleted'], $meta, ); } /** * {@inheritDoc} */ public function toArray(): array { return [ 'id' => $this->id, 'object' => $this->object, 'deleted' => $this->deleted, ]; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
DeleteResponse.php
1,556 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
ListResponse.php
1,965 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
RetrieveResponse.php
1,728 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
Chang
Apply