mirror of
https://github.com/nextcloud/server.git
synced 2026-02-11 14:54:02 -05:00
23 lines
416 B
PHP
23 lines
416 B
PHP
<?php
|
|
|
|
namespace OCP\LanguageModel\Events;
|
|
|
|
/**
|
|
* @since 28.0.0
|
|
*/
|
|
class SummarySuccessfulEvent extends AbstractLanguageModelEvent {
|
|
|
|
public function __construct(int $requestId,
|
|
?string $userId,
|
|
string $appId,
|
|
private string $output) {
|
|
parent::__construct($requestId, $userId, $appId);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getOutput(): string {
|
|
return $this->output;
|
|
}
|
|
}
|