|
11 | 11 |
|
12 | 12 | from msrest.service_client import SDKClient
|
13 | 13 | from msrest import Configuration, Serializer, Deserializer
|
| 14 | +from botbuilder.schema import models |
14 | 15 | from .version import VERSION
|
15 |
| -from msrest.exceptions import HttpOperationError |
16 | 16 | from .operations.teams_operations import TeamsOperations
|
17 |
| -from . import models |
18 | 17 |
|
19 | 18 |
|
20 | 19 | class TeamsConnectorClientConfiguration(Configuration):
|
@@ -43,11 +42,13 @@ def __init__(self, credentials, base_url=None):
|
43 | 42 |
|
44 | 43 |
|
45 | 44 | class TeamsConnectorClient(SDKClient):
|
46 |
| - """The Bot Connector REST API extension for Microsoft Teams allows your bot to perform extended operations on to Microsoft Teams channel configured in the |
47 |
| - [Bot Framework Developer Portal](https://dev.botframework.com). The Connector service uses industry-standard REST and JSON over HTTPS. |
48 |
| - Client libraries for this REST API are available. See below for a list. |
| 45 | + """The Bot Connector REST API extension for Microsoft Teams allows your bot to perform extended |
| 46 | + operations on to Microsoft Teams channel configured in the |
| 47 | + [Bot Framework Developer Portal](https://dev.botframework.com). The Connector service uses |
| 48 | + industry-standard REST and JSON over HTTPS. Client libraries for this REST API are available. See below for a list. |
49 | 49 | Authentication for both the Bot Connector and Bot State REST APIs is accomplished with JWT Bearer tokens, and is
|
50 |
| - described in detail in the [Connector Authentication](https://docs.botframework.com/en-us/restapi/authentication) document. |
| 50 | + described in detail in the [Connector Authentication](https://docs.botframework.com/en-us/restapi/authentication) |
| 51 | + document. |
51 | 52 | # Client Libraries for the Bot Connector REST API
|
52 | 53 | * [Bot Builder for C#](https://docs.botframework.com/en-us/csharp/builder/sdkreference/)
|
53 | 54 | * [Bot Builder for Node.js](https://docs.botframework.com/en-us/node/builder/overview/)
|
|
0 commit comments