File: __init__.py

package info (click to toggle)
python-twilio 9.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,756 kB
  • sloc: python: 8,281; makefile: 65
file content (13 lines) | stat: -rw-r--r-- 417 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
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