|
29 | 29 | from twilio.rest.insights import Insights |
30 | 30 | from twilio.rest.intelligence import Intelligence |
31 | 31 | from twilio.rest.ip_messaging import IpMessaging |
32 | | - from twilio.rest.knowledge import Knowledge |
33 | 32 | from twilio.rest.lookups import Lookups |
34 | 33 | from twilio.rest.marketplace import Marketplace |
35 | 34 | from twilio.rest.messaging import Messaging |
36 | | - from twilio.rest.microvisor import Microvisor |
37 | 35 | from twilio.rest.monitor import Monitor |
38 | 36 | from twilio.rest.notify import Notify |
39 | 37 | from twilio.rest.numbers import Numbers |
@@ -143,11 +141,9 @@ def __init__( |
143 | 141 | self._insights: Optional["Insights"] = None |
144 | 142 | self._intelligence: Optional["Intelligence"] = None |
145 | 143 | self._ip_messaging: Optional["IpMessaging"] = None |
146 | | - self._knowledge: Optional["Knowledge"] = None |
147 | 144 | self._lookups: Optional["Lookups"] = None |
148 | 145 | self._marketplace: Optional["Marketplace"] = None |
149 | 146 | self._messaging: Optional["Messaging"] = None |
150 | | - self._microvisor: Optional["Microvisor"] = None |
151 | 147 | self._monitor: Optional["Monitor"] = None |
152 | 148 | self._notify: Optional["Notify"] = None |
153 | 149 | self._numbers: Optional["Numbers"] = None |
@@ -363,19 +359,6 @@ def ip_messaging(self) -> "IpMessaging": |
363 | 359 | self._ip_messaging = IpMessaging(self) |
364 | 360 | return self._ip_messaging |
365 | 361 |
|
366 | | - @property |
367 | | - def knowledge(self) -> "Knowledge": |
368 | | - """ |
369 | | - Access the Knowledge Twilio Domain |
370 | | -
|
371 | | - :returns: Knowledge Twilio Domain |
372 | | - """ |
373 | | - if self._knowledge is None: |
374 | | - from twilio.rest.knowledge import Knowledge |
375 | | - |
376 | | - self._knowledge = Knowledge(self) |
377 | | - return self._knowledge |
378 | | - |
379 | 362 | @property |
380 | 363 | def lookups(self) -> "Lookups": |
381 | 364 | """ |
@@ -415,19 +398,6 @@ def messaging(self) -> "Messaging": |
415 | 398 | self._messaging = Messaging(self) |
416 | 399 | return self._messaging |
417 | 400 |
|
418 | | - @property |
419 | | - def microvisor(self) -> "Microvisor": |
420 | | - """ |
421 | | - Access the Microvisor Twilio Domain |
422 | | -
|
423 | | - :returns: Microvisor Twilio Domain |
424 | | - """ |
425 | | - if self._microvisor is None: |
426 | | - from twilio.rest.microvisor import Microvisor |
427 | | - |
428 | | - self._microvisor = Microvisor(self) |
429 | | - return self._microvisor |
430 | | - |
431 | 401 | @property |
432 | 402 | def monitor(self) -> "Monitor": |
433 | 403 | """ |
|
0 commit comments