UNPKG

1.5 kBTypeScriptView Raw
1/**
2 * @module botbuilder
3 */
4/**
5 * Copyright (c) Microsoft Corporation. All rights reserved.
6 * Licensed under the MIT License.
7 */
8/**
9 * Constants representing the API path that immediately follows the basePath.
10 * These are currently internal but we will re-evaluate making them public, in the future.
11 *
12 * @example
13 * RouteConstants.Activities = '/v3/conversations/:conversationId/activities'.
14 */
15export declare class RouteConstants {
16 /**
17 * Base API path for bot conversations.
18 */
19 static readonly Conversations: string;
20 /**
21 * API path for conversation history.
22 */
23 static readonly ConversationHistory: string;
24 /**
25 * API path for all conversation members.
26 */
27 static readonly ConversationMembers: string;
28 /**
29 * API path for page(s) of all conversation members.
30 */
31 static readonly ConversationPagedMembers: string;
32 /**
33 * API path for single conversation member.
34 */
35 static readonly ConversationMember: string;
36 /**
37 * API path for conversation attachments.
38 */
39 static readonly Attachments: string;
40 /**
41 * API path for all activities from conversation.
42 */
43 static readonly Activities: string;
44 /**
45 * API path for single activity from conversation.
46 */
47 static readonly Activity: string;
48 /**
49 * API path for all members from activity from conversation.
50 */
51 static readonly ActivityMembers: string;
52}
53//# sourceMappingURL=routeConstants.d.ts.map
\No newline at end of file