-
Notifications
You must be signed in to change notification settings - Fork 711
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ 1b6718f23da76f150eac392860c66a26de9af713 ce…
…b130295f80bc623f22496076e3dd57e27da2fb
- Loading branch information
Showing
18 changed files
with
3,980 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
r""" | ||
This code was generated by | ||
___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ | ||
| | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ | ||
| |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ | ||
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.domain import Domain | ||
from twilio.rest import Client | ||
from twilio.rest.assistants.v1 import V1 | ||
|
||
|
||
class AssistantsBase(Domain): | ||
|
||
def __init__(self, twilio: Client): | ||
""" | ||
Initialize the Assistants Domain | ||
:returns: Domain for Assistants | ||
""" | ||
super().__init__(twilio, "https://assistants.twilio.com") | ||
self._v1: Optional[V1] = None | ||
|
||
@property | ||
def v1(self) -> V1: | ||
""" | ||
:returns: Versions v1 of Assistants | ||
""" | ||
if self._v1 is None: | ||
self._v1 = V1(self) | ||
return self._v1 | ||
|
||
def __repr__(self) -> str: | ||
""" | ||
Provide a friendly representation | ||
:returns: Machine friendly representation | ||
""" | ||
return "<Twilio.Assistants>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
r""" | ||
This code was generated by | ||
___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ | ||
| | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ | ||
| |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ | ||
Twilio - Assistants | ||
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.assistants.v1.assistant import AssistantList | ||
from twilio.rest.assistants.v1.knowledge import KnowledgeList | ||
from twilio.rest.assistants.v1.policy import PolicyList | ||
from twilio.rest.assistants.v1.session import SessionList | ||
from twilio.rest.assistants.v1.tool import ToolList | ||
|
||
|
||
class V1(Version): | ||
|
||
def __init__(self, domain: Domain): | ||
""" | ||
Initialize the V1 version of Assistants | ||
:param domain: The Twilio.assistants domain | ||
""" | ||
super().__init__(domain, "v1") | ||
self._assistants: Optional[AssistantList] = None | ||
self._knowledge: Optional[KnowledgeList] = None | ||
self._policies: Optional[PolicyList] = None | ||
self._sessions: Optional[SessionList] = None | ||
self._tools: Optional[ToolList] = None | ||
|
||
@property | ||
def assistants(self) -> AssistantList: | ||
if self._assistants is None: | ||
self._assistants = AssistantList(self) | ||
return self._assistants | ||
|
||
@property | ||
def knowledge(self) -> KnowledgeList: | ||
if self._knowledge is None: | ||
self._knowledge = KnowledgeList(self) | ||
return self._knowledge | ||
|
||
@property | ||
def policies(self) -> PolicyList: | ||
if self._policies is None: | ||
self._policies = PolicyList(self) | ||
return self._policies | ||
|
||
@property | ||
def sessions(self) -> SessionList: | ||
if self._sessions is None: | ||
self._sessions = SessionList(self) | ||
return self._sessions | ||
|
||
@property | ||
def tools(self) -> ToolList: | ||
if self._tools is None: | ||
self._tools = ToolList(self) | ||
return self._tools | ||
|
||
def __repr__(self) -> str: | ||
""" | ||
Provide a friendly representation | ||
:returns: Machine friendly representation | ||
""" | ||
return "<Twilio.Assistants.V1>" |
Oops, something went wrong.