*/ final class DeleteCredentialResponse implements ApiResponse { private $message; private $error; private $spec; private function __construct() { } public static function create(array $data): self { $model = new self(); $model->message = $data['message'] ?? null; $model->error = $data['error'] ?? null; $model->spec = $data['spec'] ?? null; return $model; } public function getMessage(): ?string { return $this->message; } public function getError(): ?string { return $this->error; } public function getSpec(): ?string { return $this->spec; } }