You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/communication/azure-communication-chat/src/main/java/com/azure/communication/chat/implementation/ChatThreadsImpl.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -674,7 +674,7 @@ public Response<SendChatMessageResult> sendChatMessageWithResponse(
674
674
* Gets a list of messages from a thread.
675
675
*
676
676
* @param chatThreadId The thread id of the message.
677
-
* @param maxPageSize The maximum number of messages to be returned per page.
677
+
* @param maxPageSize The maximum number of messages to be returned per page. The limit can be found at https://docs.microsoft.com/en-us/azure/communication-services/concepts/service-limits#size-limits.
678
678
* @param startTime The earliest point in time to get messages up to. The timestamp should be in RFC3339 format:
679
679
* `yyyy-MM-ddTHH:mm:ssZ`.
680
680
* @throws IllegalArgumentException thrown if parameters fail the validation.
@@ -711,7 +711,7 @@ public Mono<PagedResponse<ChatMessage>> listChatMessagesSinglePageAsync(
711
711
* Gets a list of messages from a thread.
712
712
*
713
713
* @param chatThreadId The thread id of the message.
714
-
* @param maxPageSize The maximum number of messages to be returned per page.
714
+
* @param maxPageSize The maximum number of messages to be returned per page. The limit can be found at https://docs.microsoft.com/en-us/azure/communication-services/concepts/service-limits#size-limits.
715
715
* @param startTime The earliest point in time to get messages up to. The timestamp should be in RFC3339 format:
716
716
* `yyyy-MM-ddTHH:mm:ssZ`.
717
717
* @param context The context to associate with this operation.
@@ -747,7 +747,7 @@ public Mono<PagedResponse<ChatMessage>> listChatMessagesSinglePageAsync(
747
747
* Gets a list of messages from a thread.
748
748
*
749
749
* @param chatThreadId The thread id of the message.
750
-
* @param maxPageSize The maximum number of messages to be returned per page.
750
+
* @param maxPageSize The maximum number of messages to be returned per page. The limit can be found at https://docs.microsoft.com/en-us/azure/communication-services/concepts/service-limits#size-limits.
751
751
* @param startTime The earliest point in time to get messages up to. The timestamp should be in RFC3339 format:
752
752
* `yyyy-MM-ddTHH:mm:ssZ`.
753
753
* @throws IllegalArgumentException thrown if parameters fail the validation.
@@ -785,7 +785,7 @@ public PagedFlux<ChatMessage> listChatMessagesAsync(String chatThreadId) {
785
785
* Gets a list of messages from a thread.
786
786
*
787
787
* @param chatThreadId The thread id of the message.
788
-
* @param maxPageSize The maximum number of messages to be returned per page.
788
+
* @param maxPageSize The maximum number of messages to be returned per page. The limit can be found at https://docs.microsoft.com/en-us/azure/communication-services/concepts/service-limits#size-limits.
789
789
* @param startTime The earliest point in time to get messages up to. The timestamp should be in RFC3339 format:
790
790
* `yyyy-MM-ddTHH:mm:ssZ`.
791
791
* @param context The context to associate with this operation.
@@ -806,7 +806,7 @@ public PagedFlux<ChatMessage> listChatMessagesAsync(
806
806
* Gets a list of messages from a thread.
807
807
*
808
808
* @param chatThreadId The thread id of the message.
809
-
* @param maxPageSize The maximum number of messages to be returned per page.
809
+
* @param maxPageSize The maximum number of messages to be returned per page. The limit can be found at https://docs.microsoft.com/en-us/azure/communication-services/concepts/service-limits#size-limits.
810
810
* @param startTime The earliest point in time to get messages up to. The timestamp should be in RFC3339 format:
811
811
* `yyyy-MM-ddTHH:mm:ssZ`.
812
812
* @throws IllegalArgumentException thrown if parameters fail the validation.
@@ -840,7 +840,7 @@ public PagedIterable<ChatMessage> listChatMessages(String chatThreadId) {
840
840
* Gets a list of messages from a thread.
841
841
*
842
842
* @param chatThreadId The thread id of the message.
843
-
* @param maxPageSize The maximum number of messages to be returned per page.
843
+
* @param maxPageSize The maximum number of messages to be returned per page. The limit can be found at https://docs.microsoft.com/en-us/azure/communication-services/concepts/service-limits#size-limits.
844
844
* @param startTime The earliest point in time to get messages up to. The timestamp should be in RFC3339 format:
845
845
* `yyyy-MM-ddTHH:mm:ssZ`.
846
846
* @param context The context to associate with this operation.
0 commit comments