Skip to content

Commit

Permalink
Add Identity class
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeusina committed Aug 13, 2023
1 parent a70c45c commit f91f06a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions petersbugredu_wrap/types/identity.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class Identity:
def __init__(self, id: int, uid: str = None):
"""
Class for implement identity parameter in API
:param id: identity id
:param uid: identity uid
"""
self.id = id
self.uid = uid

0 comments on commit f91f06a

Please sign in to comment.