3232 * @method void setReleased(int $value)
3333 * @method int getDeleted()
3434 * @method void setDeleted(int $value)
35+ * @method int getCreated()
36+ * @method void setCreated(int $value)
37+ * @method ?string getDescription()
38+ * @method void setDescription(?string $value)
39+ *
3540 *
3641 * No magic getters, getters are overwritten for special handling of timestamp and option text
3742 * @method void setOrder(int $value)
@@ -70,6 +75,7 @@ class Option extends EntityWithUser implements JsonSerializable {
7075 protected int $ pollId = 0 ;
7176 protected string $ pollOptionText = '' ;
7277 protected string $ pollOptionHash = '' ;
78+ protected ?string $ description = '' ;
7379 protected int $ timestamp = 0 ;
7480 protected int $ duration = 0 ;
7581 protected int $ order = 0 ;
@@ -79,6 +85,7 @@ class Option extends EntityWithUser implements JsonSerializable {
7985 protected string $ owner = '' ;
8086 protected int $ released = 0 ;
8187 protected int $ deleted = 0 ;
88+ protected int $ created = 0 ;
8289
8390 // joined columns
8491 protected ?string $ userVoteAnswer = '' ;
@@ -104,6 +111,7 @@ public function __construct() {
104111 $ this ->addType ('duration ' , 'integer ' );
105112 $ this ->addType ('confirmed ' , 'integer ' );
106113 $ this ->addType ('deleted ' , 'integer ' );
114+ $ this ->addType ('created ' , 'integer ' );
107115
108116 // joined Attributes
109117 $ this ->addType ('optionLimit ' , 'integer ' );
0 commit comments