1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
r"""
This code was generated by
___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
| | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
| |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
Twilio - Intelligence
This is the public Twilio REST API.
NOTE: This class is auto generated by OpenAPI Generator.
https://openapi-generator.tech
Do not edit the class manually.
"""
from typing import Optional
from twilio.base.version import Version
from twilio.base.domain import Domain
from twilio.rest.intelligence.v2.custom_operator import CustomOperatorList
from twilio.rest.intelligence.v2.operator import OperatorList
from twilio.rest.intelligence.v2.operator_attachment import OperatorAttachmentList
from twilio.rest.intelligence.v2.operator_attachments import OperatorAttachmentsList
from twilio.rest.intelligence.v2.operator_type import OperatorTypeList
from twilio.rest.intelligence.v2.prebuilt_operator import PrebuiltOperatorList
from twilio.rest.intelligence.v2.service import ServiceList
from twilio.rest.intelligence.v2.transcript import TranscriptList
class V2(Version):
def __init__(self, domain: Domain):
"""
Initialize the V2 version of Intelligence
:param domain: The Twilio.intelligence domain
"""
super().__init__(domain, "v2")
self._custom_operators: Optional[CustomOperatorList] = None
self._operators: Optional[OperatorList] = None
self._operator_attachment: Optional[OperatorAttachmentList] = None
self._operator_attachments: Optional[OperatorAttachmentsList] = None
self._operator_type: Optional[OperatorTypeList] = None
self._prebuilt_operators: Optional[PrebuiltOperatorList] = None
self._services: Optional[ServiceList] = None
self._transcripts: Optional[TranscriptList] = None
@property
def custom_operators(self) -> CustomOperatorList:
if self._custom_operators is None:
self._custom_operators = CustomOperatorList(self)
return self._custom_operators
@property
def operators(self) -> OperatorList:
if self._operators is None:
self._operators = OperatorList(self)
return self._operators
@property
def operator_attachment(self) -> OperatorAttachmentList:
if self._operator_attachment is None:
self._operator_attachment = OperatorAttachmentList(self)
return self._operator_attachment
@property
def operator_attachments(self) -> OperatorAttachmentsList:
if self._operator_attachments is None:
self._operator_attachments = OperatorAttachmentsList(self)
return self._operator_attachments
@property
def operator_type(self) -> OperatorTypeList:
if self._operator_type is None:
self._operator_type = OperatorTypeList(self)
return self._operator_type
@property
def prebuilt_operators(self) -> PrebuiltOperatorList:
if self._prebuilt_operators is None:
self._prebuilt_operators = PrebuiltOperatorList(self)
return self._prebuilt_operators
@property
def services(self) -> ServiceList:
if self._services is None:
self._services = ServiceList(self)
return self._services
@property
def transcripts(self) -> TranscriptList:
if self._transcripts is None:
self._transcripts = TranscriptList(self)
return self._transcripts
def __repr__(self) -> str:
"""
Provide a friendly representation
:returns: Machine friendly representation
"""
return "<Twilio.Intelligence.V2>"
|