7 lines
123 B
Python
7 lines
123 B
Python
from .base_object import BaseObject
|
|
|
|
|
|
class Invite(BaseObject):
|
|
"""Represents the invite"""
|
|
|
|
_item_type = 'invite'
|