diff --git a/Models/TicketAttribute.php b/Models/TicketAttribute.php index c7e806f..9fe1c55 100755 --- a/Models/TicketAttribute.php +++ b/Models/TicketAttribute.php @@ -67,18 +67,6 @@ class TicketAttribute implements \JsonSerializable $this->value = new TicketAttributeValue(); } - /** - * Get id - * - * @return int - * - * @since 1.0.0 - */ - public function getId() : int - { - return $this->id; - } - /** * {@inheritdoc} */ diff --git a/Models/TicketAttributeType.php b/Models/TicketAttributeType.php index a2b2da9..77e981a 100755 --- a/Models/TicketAttributeType.php +++ b/Models/TicketAttributeType.php @@ -97,18 +97,6 @@ class TicketAttributeType implements \JsonSerializable $this->setL11n($name); } - /** - * Get id - * - * @return int - * - * @since 1.0.0 - */ - public function getId() : int - { - return $this->id; - } - /** * Set l11n * diff --git a/Models/TicketAttributeValue.php b/Models/TicketAttributeValue.php index 712f215..2003fb5 100755 --- a/Models/TicketAttributeValue.php +++ b/Models/TicketAttributeValue.php @@ -108,17 +108,6 @@ class TicketAttributeValue implements \JsonSerializable */ private ?BaseStringL11n $l11n = null; - /** - * Get id - * - * @return int - * - * @since 1.0.0 - */ - public function getId() : int - { - return $this->id; - } /** * Set value diff --git a/Models/TicketElement.php b/Models/TicketElement.php index 653100b..e877fea 100755 --- a/Models/TicketElement.php +++ b/Models/TicketElement.php @@ -70,18 +70,6 @@ class TicketElement implements \JsonSerializable $this->taskElement = $taskElement ?? new TaskElement(); } - /** - * Get id - * - * @return int - * - * @since 1.0.0 - */ - public function getId() : int - { - return $this->id; - } - /** * {@inheritdoc} */