8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc26248 commit 541ce70Copy full SHA for 541ce70
twilio/rest/intelligence/__init__.py
@@ -0,0 +1,13 @@
1
+from twilio.rest.intelligence.IntelligenceBase import IntelligenceBase
2
+from twilio.rest.intelligence.v2.service import ServiceList
3
+from twilio.rest.intelligence.v2.transcript import TranscriptList
4
+
5
6
+class Intelligence(IntelligenceBase):
7
+ @property
8
+ def transcripts(self) -> TranscriptList:
9
+ return self.v2.transcripts
10
11
12
+ def services(self) -> ServiceList:
13
+ return self.v2.services
0 commit comments