diff --git a/lib/Db/Attach.php b/lib/Db/Attach.php index a542f5b..4be6f16 100644 --- a/lib/Db/Attach.php +++ b/lib/Db/Attach.php @@ -5,11 +5,23 @@ use JsonSerializable; use OCP\AppFramework\Db\Entity; +/** + * @method string getUserId() + * @method void setUserId(string $userId) + * @method int getNoteId() + * @method void setNoteId(int $noteId) + * @method int getFileId() + * @method void setFileId(int $fileId) + * @method int getCreatedAt() + * @method void setCreatedAt(int $createdAt) + */ + class Attach extends Entity implements JsonSerializable { protected $userId; protected $noteId; protected $fileId; protected $createdAt; + protected $previewUrl; protected $redirectUrl; protected $deepLinkUrl;