diff --git a/src/Appwrite/Utopia/Response/Model/Execution.php b/src/Appwrite/Utopia/Response/Model/Execution.php index 22c7710ec..9b38bf71f 100644 --- a/src/Appwrite/Utopia/Response/Model/Execution.php +++ b/src/Appwrite/Utopia/Response/Model/Execution.php @@ -48,13 +48,13 @@ class Execution extends Model ]) ->addRule('stdout', [ 'type' => self::TYPE_STRING, - 'description' => 'The script stdout output string.', + 'description' => 'The script stdout output string. Logs the latest 4,000 charachters of the execution stdout output.', 'default' => '', 'example' => '', ]) ->addRule('stderr', [ 'type' => self::TYPE_STRING, - 'description' => 'The script stderr output string.', + 'description' => 'The script stderr output string. Logs the latest 4,000 charachters of the execution stderr output.', 'default' => '', 'example' => '', ])