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: twilio/rest/conversations/v1/conversation/__init__.py
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -682,8 +682,8 @@ def stream(
682
682
is reached.
683
683
The results are returned as a generator, so this operation is memory efficient.
684
684
685
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
686
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
685
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
686
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
687
687
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
688
688
:param limit: Upper limit for the number of records to return. stream()
689
689
guarantees to never return more than limit. Default is no limit
@@ -718,8 +718,8 @@ async def stream_async(
718
718
is reached.
719
719
The results are returned as a generator, so this operation is memory efficient.
720
720
721
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
722
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
721
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
722
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
723
723
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
724
724
:param limit: Upper limit for the number of records to return. stream()
725
725
guarantees to never return more than limit. Default is no limit
@@ -753,8 +753,8 @@ def list(
753
753
Unlike stream(), this operation is eager and will load `limit` records into
754
754
memory before returning.
755
755
756
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
757
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
756
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
757
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
758
758
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
759
759
:param limit: Upper limit for the number of records to return. list() guarantees
760
760
never to return more than limit. Default is no limit
@@ -788,8 +788,8 @@ async def list_async(
788
788
Unlike stream(), this operation is eager and will load `limit` records into
789
789
memory before returning.
790
790
791
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
792
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
791
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
792
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
793
793
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
794
794
:param limit: Upper limit for the number of records to return. list() guarantees
795
795
never to return more than limit. Default is no limit
@@ -824,8 +824,8 @@ def page(
824
824
Retrieve a single page of ConversationInstance records from the API.
825
825
Request is executed immediately
826
826
827
-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
828
-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
827
+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
828
+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
829
829
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
830
830
:param page_token: PageToken provided by the API
831
831
:param page_number: Page Number, this value is simply for client state
@@ -860,8 +860,8 @@ async def page_async(
860
860
Asynchronously retrieve a single page of ConversationInstance records from the API.
861
861
Request is executed immediately
862
862
863
-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
864
-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
863
+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
864
+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
865
865
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
866
866
:param page_token: PageToken provided by the API
867
867
:param page_number: Page Number, this value is simply for client state
Copy file name to clipboardExpand all lines: twilio/rest/conversations/v1/service/conversation/__init__.py
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -722,8 +722,8 @@ def stream(
722
722
is reached.
723
723
The results are returned as a generator, so this operation is memory efficient.
724
724
725
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
726
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
725
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
726
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
727
727
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
728
728
:param limit: Upper limit for the number of records to return. stream()
729
729
guarantees to never return more than limit. Default is no limit
@@ -758,8 +758,8 @@ async def stream_async(
758
758
is reached.
759
759
The results are returned as a generator, so this operation is memory efficient.
760
760
761
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
762
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
761
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
762
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
763
763
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
764
764
:param limit: Upper limit for the number of records to return. stream()
765
765
guarantees to never return more than limit. Default is no limit
@@ -793,8 +793,8 @@ def list(
793
793
Unlike stream(), this operation is eager and will load `limit` records into
794
794
memory before returning.
795
795
796
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
797
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
796
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
797
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
798
798
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
799
799
:param limit: Upper limit for the number of records to return. list() guarantees
800
800
never to return more than limit. Default is no limit
@@ -828,8 +828,8 @@ async def list_async(
828
828
Unlike stream(), this operation is eager and will load `limit` records into
829
829
memory before returning.
830
830
831
-
:param str start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
832
-
:param str end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
831
+
:param str start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
832
+
:param str end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
833
833
:param "ConversationInstance.State" state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
834
834
:param limit: Upper limit for the number of records to return. list() guarantees
835
835
never to return more than limit. Default is no limit
@@ -864,8 +864,8 @@ def page(
864
864
Retrieve a single page of ConversationInstance records from the API.
865
865
Request is executed immediately
866
866
867
-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
868
-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
867
+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
868
+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
869
869
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
870
870
:param page_token: PageToken provided by the API
871
871
:param page_number: Page Number, this value is simply for client state
@@ -900,8 +900,8 @@ async def page_async(
900
900
Asynchronously retrieve a single page of ConversationInstance records from the API.
901
901
Request is executed immediately
902
902
903
<
5DA1
/td>
-
:param start_date: Start date in ISO8601 format for sorting and filtering list of Conversations.
904
-
:param end_date: End date in ISO8601 format for sorting and filtering list of Conversations.
903
+
:param start_date: Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters.
904
+
:param end_date: End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters.
905
905
:param state: State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed`
906
906
:param page_token: PageToken provided by the API
907
907
:param page_number: Page Number, this value is simply for client state
0 commit comments