We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b65d6ff + 388f126 commit 7f86e35Copy full SHA for 7f86e35
src/pytito/__about__.py
@@ -17,4 +17,4 @@
17
18
Variables that describes the Package
19
"""
20
-__version__ = "0.0.5"
+__version__ = "0.0.6"
src/pytito/admin/ticket.py
@@ -94,6 +94,20 @@ def name(self) -> str:
94
95
return self._json_content['name']
96
97
+ @property
98
+ def first_name(self) -> str:
99
+ """
100
+ First Name of the ticket holder
101
102
+ return self._json_content['first_name']
103
+
104
105
+ def last_name(self) -> str:
106
107
+ Last Name of the ticket holder
108
109
+ return self._json_content['last_name']
110
111
@property
112
def email(self) -> str:
113
0 commit comments