def intent(self) -> Intent: return Intent(self.dictionary.get("intent"))
def data(self) -> Intent: return Intent(self.dictionary.get("data"))
def intents(self) -> List[Intent]: return list(map(lambda x: Intent(x), self.dictionary.get("intents")))