%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/passwords/lib/Db/ |
Current File : //www/varak.net/nextcloud.varak.net/apps_old/apps/passwords/lib/Db/RevisionInterface.php |
<?php /** * This file is part of the Passwords App * created by Marius David Wieschollek * and licensed under the AGPL. */ namespace OCA\Passwords\Db; /** * Interface RevisionInterface * * @method string getUuid() * @method void setUuid(string $uuid) * @method string getSseKey() * @method void setSseKey(string $sseKey) * @method string getSseType() * @method void setSseType(string $sseType) * @method string getCseType() * @method void setCseType(string $cseType) * @method string getCseKey() * @method void setCseKey(string $cseKey) * @method string getModel() * @method void setModel(string $model) * @method string getLabel() * @method void setLabel(string $label) * @method int getEdited() * @method void setEdited(int $edited) * @method bool getHidden() * @method void setHidden(bool $hidden) * @method bool getTrashed() * @method void setTrashed(bool $trashed) * @method bool getFavorite() * @method void setFavorite(bool $favorite) * @method string getClient() * @method void setClient(string $client) * * @package OCA\Passwords\Db */ interface RevisionInterface extends EntityInterface { /** * @return bool */ public function _isDecrypted(): bool; /** * @param bool $decrypted */ public function _setDecrypted(bool $decrypted); }