Viewing file: DeleteResponse.php (1.14 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types=1);
namespace OpenAI\Responses\Models;
use OpenAI\Contracts\Response; use OpenAI\Responses\Concerns\ArrayAccessible;
/** * @implements Response<array{id: string, object: string, deleted: bool}> */ final class DeleteResponse implements Response { /** * @use ArrayAccessible<array{id: string, object: string, deleted: bool}> */ use ArrayAccessible;
private function __construct( public readonly string $id, public readonly string $object, public readonly bool $deleted, ) { }
/** * 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): self { return new self( $attributes['id'], $attributes['object'], $attributes['deleted'], ); }
/** * {@inheritDoc} */ public function toArray(): array { return [ 'id' => $this->id, 'object' => $this->object, 'deleted' => $this->deleted, ]; } }
|