コード例 #1
0
 def intent(self) -> Intent:
     return Intent(self.dictionary.get("intent"))
コード例 #2
0
 def data(self) -> Intent:
     return Intent(self.dictionary.get("data"))
コード例 #3
0
 def intents(self) -> List[Intent]:
     return list(map(lambda x: Intent(x), self.dictionary.get("intents")))