Skip to content

Commit

Permalink
Create __init__.py for intelligence domain
Browse files Browse the repository at this point in the history
  • Loading branch information
AsabuHere authored Jul 11, 2023
1 parent bc26248 commit da069ac
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions twilio/rest/intelligence/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from warnings import warn


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 da069ac

Please sign in to comment.