""" Dashboard API Key """ class DashboardAPIKey: def __init__(self, Key: str, CreatedAt: str, ExpiredAt: str): self.Key = Key self.CreatedAt = CreatedAt self.ExpiredAt = ExpiredAt def toJson(self): return self.__dict__