Skip to content

Commit ca28733

Browse files
author
PureCloud Jenkins
committed
3.0.0
1 parent d943aa8 commit ca28733

426 files changed

Lines changed: 30130 additions & 2500 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ client.addSessionListener(sessionListener);
9595
// Connect to the websocket to join the conversation
9696
String deploymentId = "df2ad262-7fe2-4fb2-9a83-e34be463713a";
9797
String token = "31a7021f-5798-4b6f-9ca2-7303d91f3f73";
98-
String initialMessage = "Initial chat message";
98+
String initialMessage = "Initial webmessaging message";
9999
client.joinConversation(deploymentId, token, initialMessage);
100100
101101
// Send a message to the conversation

build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ client.addSessionListener(sessionListener);
9595
// Connect to the websocket to join the conversation
9696
String deploymentId = "df2ad262-7fe2-4fb2-9a83-e34be463713a";
9797
String token = "31a7021f-5798-4b6f-9ca2-7303d91f3f73";
98-
String initialMessage = "Initial chat message";
98+
String initialMessage = "Initial webmessaging message";
9999
client.joinConversation(deploymentId, token, initialMessage);
100100
101101
// Send a message to the conversation

build/docs/ButtonComponent.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: ButtonComponent
3+
---
4+
## ButtonComponent
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
| **title** | <!----><!---->**String**<!----> | Text to show inside the button. | [optional] |
12+
| **actions** | <!----><!---->[**ContentActions**](ContentActions.html)<!----> | The button actions. | [optional] |
13+
{: class="table table-striped"}
14+
15+
16+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: ConnectionClosedEvent
3+
---
4+
## ConnectionClosedEvent
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
{: class="table table-striped"}
12+
13+
14+

build/docs/ContentActions.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: ContentActions
3+
---
4+
## ContentActions
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
| **url** | <!----><!---->**String**<!----> | A URL of a web page to direct the user to. | [optional] |
12+
| **urlTarget** | <!----><!---->**String**<!----> | The target window in which to open the URL. If empty will open a blank page or tab. | [optional] |
13+
| **textback** | <!----><!---->**String**<!----> | Text to be sent back in reply when the item is selected. | [optional] |
14+
{: class="table table-striped"}
15+
16+
17+

build/docs/ContentAttachment.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: ContentAttachment
3+
---
4+
## ContentAttachment
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
| **filename** | <!----><!---->**String**<!----> | Suggested file name for attachment. | [optional] |
12+
| **id** | <!----><!---->**String**<!----> | Provider specific ID for attachment. For example, a LINE sticker ID. | [optional] |
13+
| **mediaType** | <!----><!---->[**MediaType**](MediaType.html)<!----> | The type of attachment this instance represents. | |
14+
| **mime** | <!----><!---->**String**<!----> | Attachment mime type (https://www.iana.org/assignments/media-types/media-types.xhtml). | [optional] |
15+
| **sha256** | <!----><!---->**String**<!----> | Secure hash of the attachment content. | [optional] |
16+
| **text** | <!----><!---->**String**<!----> | Text associated with attachment such as an image caption. | [optional] |
17+
| **url** | <!----><!---->**String**<!----> | URL of the attachment. | [optional] |
18+
{: class="table table-striped"}
19+
20+
21+

build/docs/ContentButtonResponse.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ title: ContentButtonResponse
88

99
| Name | Type | Description | Notes |
1010
| ------------ | ------------- | ------------- | ------------- |
11-
| **id** | <!----><!---->**String**<!----> | An ID assigned to the button response. Each object inside the content array has a unique ID. | [optional] |
12-
| **payload** | <!----><!---->**String**<!----> | Content of the textback payload after clicking a button | [optional] |
13-
| **text** | <!----><!---->**String**<!----> | Text to show inside the Button reply. This is also used as the response text after clicking on the Button. | |
14-
| **type** | <!----><!---->[**ButtonResponseType**](ButtonResponseType.html)<!----> | Button response type that captures Button and QuickReply type responses | [optional] |
11+
| **id** | <!----><!---->**String**<!----> | An ID assigned to the button response (Deprecated). | [optional] |
12+
| **payload** | <!----><!---->**String**<!----> | The response payload associated with the clicked button. | |
13+
| **text** | <!----><!---->**String**<!----> | The response text from the button click. | |
14+
| **type** | <!----><!---->[**ButtonResponseType**](ButtonResponseType.html)<!----> | Describes the button that resulted in the Button Response. | [optional] |
1515
{: class="table table-striped"}
1616

1717

build/docs/ContentGeneric.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: ContentGeneric
3+
---
4+
## ContentGeneric
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
| **actions** | <!----><!---->[**ContentActions**](ContentActions.html)<!----> | Actions to be taken. | [optional] |
12+
| **components** | <!----><!---->[**List&lt;ButtonComponent&gt;**](ButtonComponent.html)<!----> | An array of component objects. | [optional] |
13+
| **description** | <!----><!---->**String**<!----> | Text to show in the description. | [optional] |
14+
| **id** | <!----><!---->**String**<!----> | A unique ID assigned to this rich message content. | [optional] |
15+
| **image** | <!----><!---->**String**<!----> | URL of an image. | [optional] |
16+
| **title** | <!----><!---->**String**<!----> | Text to show in the title. | [optional] |
17+
| **video** | <!----><!---->**String**<!----> | URL of a video. | [optional] |
18+
{: class="table table-striped"}
19+
20+
21+

build/docs/ContentList.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: ContentList
3+
---
4+
## ContentList
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
| **actions** | <!----><!---->[**ContentActions**](ContentActions.html)<!----> | The list actions. | [optional] |
12+
| **components** | <!----><!---->[**List&lt;ListItemComponent&gt;**](ListItemComponent.html)<!----> | An array of component objects. | [optional] |
13+
| **description** | <!----><!---->**String**<!----> | Text to show in the description. | [optional] |
14+
| **id** | <!----><!---->**String**<!----> | A unique ID assigned to this rich message content. | [optional] |
15+
| **listType** | <!----><!---->[**ListType**](ListType.html)<!----> | The type of list this instance represents. | [optional] |
16+
| **submitLabel** | <!----><!---->**String**<!----> | Label for Submit button. | [optional] |
17+
| **title** | <!----><!---->**String**<!----> | Text to show in the title. | [optional] |
18+
{: class="table table-striped"}
19+
20+
21+

build/docs/ContentLocation.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: ContentLocation
3+
---
4+
## ContentLocation
5+
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
| ------------ | ------------- | ------------- | ------------- |
11+
| **address** | <!----><!---->**String**<!----> | Location postal address. | [optional] |
12+
| **latitude** | <!----><!---->**Double**<!----> | Latitude of the location. | [optional] |
13+
| **longitude** | <!----><!---->**Double**<!----> | Longitude of the location. | [optional] |
14+
| **text** | <!----><!---->**String**<!----> | Location name. | [optional] |
15+
| **url** | <!----><!---->**String**<!----> | URL of the Location. | [optional] |
16+
{: class="table table-striped"}
17+
18+
19+

0 commit comments

Comments
 (0)