From bf3c15708d37f23059465a9d922ce9e15c521d63 Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Tue, 9 Aug 2022 13:13:46 +0100 Subject: [PATCH] Update Variable Attribute Desc --- src/Appwrite/Utopia/Response/Model/Variable.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Appwrite/Utopia/Response/Model/Variable.php b/src/Appwrite/Utopia/Response/Model/Variable.php index 5d1dfa5cb8..7afa5dd601 100644 --- a/src/Appwrite/Utopia/Response/Model/Variable.php +++ b/src/Appwrite/Utopia/Response/Model/Variable.php @@ -12,19 +12,19 @@ class Variable extends Model $this ->addRule('$id', [ 'type' => self::TYPE_STRING, - 'description' => 'Function ID.', + 'description' => 'Variable ID.', 'default' => '', 'example' => '5e5ea5c16897e', ]) ->addRule('$createdAt', [ 'type' => self::TYPE_INTEGER, - 'description' => 'Function creation date in Unix timestamp.', + 'description' => 'Variable creation date in Unix timestamp.', 'default' => 0, 'example' => 1592981250, ]) ->addRule('$updatedAt', [ 'type' => self::TYPE_INTEGER, - 'description' => 'Function update date in Unix timestamp.', + 'description' => 'Variable update date in Unix timestamp.', 'default' => 0, 'example' => 1592981250, ]) @@ -43,7 +43,7 @@ class Variable extends Model ]) ->addRule('functionId', [ 'type' => self::TYPE_STRING, - 'description' => 'ID of function variable is scoped for.', + 'description' => 'Function ID.', 'default' => '', 'example' => '5e5ea5c16897e', ])