Skip to content

Commit e1b805d

Browse files
committed
merge issues
1 parent 1f712ff commit e1b805d

File tree

3 files changed

+74
-10
lines changed

3 files changed

+74
-10
lines changed

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/interactive/messages-quickstart-interactive-messages-java.md

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,48 @@ To set up an environment for sending messages, complete the steps in the followi
2424

2525
[!INCLUDE [Setting up for Java Application](../java-application-setup.md)]
2626

27-
## Code examples
2827

29-
Follow these steps to add required code snippets to the main function of your `App.java` file.
28+
## Object model
29+
30+
The following classes and interfaces handle some of the major features of the Azure Communication Services Messages SDK for Python.
31+
32+
| Class Name | Description |
33+
| --- |--- |
34+
| `NotificationMessagesClient` | Connects to your Azure Communication Services resource. It sends the messages. |
35+
| `InteractiveNotificationContent` | Defines the interactive message business can send to user. |
36+
| `InteractiveMessage` | Defines interactive message content.|
37+
| `WhatsAppListActionBindings` | Defines WhatsApp List interactive message properties binding. |
38+
| `WhatsAppButtonActionBindings`| Defines WhatsApp Button interactive message properties binding.|
39+
| `WhatsAppUrlActionBindings` | Defines WhatsApp Url interactive message properties binding.|
40+
| `TextMessageContent` | Defines the text content for Interactive message body, footer, header. |
41+
| `VideoMessageContent` | Defines the video content for Interactive message header. |
42+
| `DocumentMessageContent` | Defines the document content for Interactive message header. |
43+
| `ImageMessageContent` | Defines the image content for Interactive message header.|
44+
| `ActionGroupContent` | Defines the ActionGroup or ListOptions content for Interactive message.|
45+
| `ButtonSetContent` | Defines the Reply Buttons content for Interactive message. |
46+
| `LinkContent` | Defines the Url or Click-To-Action content for Interactive message. |
47+
48+
> [!NOTE]
49+
> For more information, see the Azure SDK for Java reference at [com.azure.communication.messages Package](/java/api/com.azure.communication.messages).
50+
51+
## Common configuration
52+
53+
Follow these steps to add required code snippets to the `messages-quickstart.py` python program.
54+
3055
- [Start sending messages between a business and a WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
3156
- [Authenticate the client](#authenticate-the-client).
3257
- [Set channel registration ID](#set-channel-registration-id).
3358
- [Set recipient list](#set-recipient-list).
59+
60+
[!INCLUDE [Common setting for using Advanced Messages SDK](../common-setting-java.md)]
61+
62+
## Code examples
63+
64+
Follow these steps to add required code snippets to the main function of your `App.java` file.
3465
- [Send an Interactive List options message to a WhatsApp user](#send-an-interactive-reply-button-message-to-a-whatsapp-user).
3566
- [Send an Interactive Reply Button message to a WhatsApp user](#send-an-interactive-reply-button-message-to-a-whatsapp-user).
3667
- [Send an Interactive Click-to-action Url based message to a WhatsApp user](#send-an-interactive-click-to-action-url-based-message-to-a-whatsapp-user)
3768

38-
[!INCLUDE [Common setting for using Advanced Messages SDK](../common-setting-java.md)]
39-
4069
### Send an Interactive List options message to a WhatsApp user
4170

4271
The Messages SDK enables Contoso to send interactive WhatsApp messages, when initiated by a WhatsApp users. To send interactive messages:

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/reactions/messages-quickstart-reaction-messages-java.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,35 @@ To set up an environment for sending messages, complete the steps in the followi
2424

2525
[!INCLUDE [Setting up for Java Application](../java-application-setup.md)]
2626

27-
## Code examples
2827

29-
Follow these steps to add required code snippets to the main function of your `App.java` file.
28+
## Object model
29+
30+
The following classes and interfaces handle some of the major features of the Azure Communication Services Messages SDK for Python.
31+
32+
| Class Name | Description |
33+
| --- | --- |
34+
| `NotificationMessagesClient` | Connects to your Azure Communication Services resource. It sends the messages. |
35+
| `ReactionNotificationContent` | Defines the reaction content of the messages with emoji and reply message ID.|
36+
37+
> [!NOTE]
38+
> For more information, see the Azure SDK for Java reference at [com.azure.communication.messages Package](/java/api/com.azure.communication.messages).
39+
40+
## Common configuration
41+
42+
Follow these steps to add required code snippets to the `messages-quickstart.py` python program.
43+
3044
- [Start sending messages between a business and a WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
3145
- [Authenticate the client](#authenticate-the-client).
3246
- [Set channel registration ID](#set-channel-registration-id).
3347
- [Set recipient list](#set-recipient-list).
34-
- [Send a Reaction messages to a WhatsApp user message](#send-a-reaction-messages-to-a-whatsapp-user-message).
3548

3649
[!INCLUDE [Common setting for using Advanced Messages SDK](../common-setting-java.md)]
3750

51+
## Code examples
52+
53+
Follow these steps to add required code snippets to the main function of your `App.java` file.
54+
- [Send a Reaction messages to a WhatsApp user message](#send-a-reaction-messages-to-a-whatsapp-user-message).
55+
3856
### Send a Reaction messages to a WhatsApp user message
3957

4058
The Messages SDK enables Contoso to send reaction WhatsApp messages, when initiated by WhatsApp users. To send text messages:

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/stickers/messages-quickstart-sticker-messages-java.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,34 @@ To set up an environment for sending messages, complete the steps in the followi
2424

2525
[!INCLUDE [Setting up for Java Application](../java-application-setup.md)]
2626

27-
## Code examples
27+
## Object model
28+
29+
The following classes and interfaces handle some of the major features of the Azure Communication Services Messages SDK for Python.
30+
31+
| Class Name | Description |
32+
| --- | --- |
33+
| `NotificationMessagesClient` | Connects to your Azure Communication Services resource. It sends the messages. |
34+
| `StickerNotificationContent` | Defines sticker content of the messages. |
35+
36+
> [!NOTE]
37+
> For more information, see the Azure SDK for Java reference at [com.azure.communication.messages Package](/java/api/com.azure.communication.messages).
38+
39+
## Common configuration
40+
41+
Follow these steps to add required code snippets to the `messages-quickstart.py` python program.
2842

29-
Follow these steps to add required code snippets to the main function of your `App.java` file.
3043
- [Start sending messages between a business and a WhatsApp user](#start-sending-messages-between-a-business-and-a-whatsapp-user).
3144
- [Authenticate the client](#authenticate-the-client).
3245
- [Set channel registration ID](#set-channel-registration-id).
3346
- [Set recipient list](#set-recipient-list).
34-
- [Send a Sticker messages to a WhatsApp user](#send-a-sticker-messages-to-a-whatsapp-user).
3547

3648
[!INCLUDE [Common setting for using Advanced Messages SDK](../common-setting-java.md)]
3749

50+
## Code examples
51+
52+
Follow these steps to add required code snippets to the main function of your `App.java` file.
53+
- [Send a Sticker messages to a WhatsApp user](#send-a-sticker-messages-to-a-whatsapp-user).
54+
3855
### Send a sticker messages to a WhatsApp user
3956

4057
The Messages SDK enables Contoso to send reaction WhatsApp messages, when initiated by WhatsApp users. To send text messages:

0 commit comments

Comments
 (0)