관리-도구
편집 파일: VectorStoreFileResponseLastError.php
<?php declare(strict_types=1); namespace OpenAI\Responses\VectorStores\Files; use OpenAI\Contracts\ResponseContract; use OpenAI\Responses\Concerns\ArrayAccessible; use OpenAI\Testing\Responses\Concerns\Fakeable; /** * @implements ResponseContract<array{code: string, message: string}> */ final class VectorStoreFileResponseLastError implements ResponseContract { /** * @use ArrayAccessible<array{code: string, message: string}> */ use ArrayAccessible; use Fakeable; private function __construct( public readonly string $code, public readonly string $message, ) {} /** * Acts as static factory, and returns a new Response instance. * * @param array{code: string, message: string} $attributes */ public static function from(array $attributes): self { return new self( $attributes['code'], $attributes['message'], ); } /** * {@inheritDoc} */ public function toArray(): array { return [ 'code' => $this->code, 'message' => $this->message, ]; } }