Skip to content

Commit

Permalink
fix: Create __init__.py for intelligence domain (#718)
Browse files Browse the repository at this point in the history
* Create __init__.py for intelligence domain
  • Loading branch information
AsabuHere authored Jul 11, 2023
1 parent bc26248 commit 541ce70
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions twilio/rest/intelligence/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from twilio.rest.intelligence.IntelligenceBase import IntelligenceBase
from twilio.rest.intelligence.v2.service import ServiceList
from twilio.rest.intelligence.v2.transcript import TranscriptList


class Intelligence(IntelligenceBase):
@property
def transcripts(self) -> TranscriptList:
return self.v2.transcripts

@property
def services(self) -> ServiceList:
return self.v2.services

0 comments on commit 541ce70

Please sign in to comment.