Skip to content

Commit 0bcb59d

Browse files
authored
Merge pull request #176 from livechat/fix_summary_comments
fix comments after renaming chat summary to chat info
2 parents ec7bd93 + f87d465 commit 0bcb59d

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

livechat/agent/web/api/v36.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ def list_chats(self,
3737
page_id: str = None,
3838
payload: dict = None,
3939
headers: dict = None) -> httpx.Response:
40-
''' Returns summaries of the chats an Agent has access to.
40+
''' Returns chat info for the chats an Agent has access to.
4141
4242
Args:
4343
filters (dict): Possible request filters. Mustn't change between
4444
requests for subsequent pages. Otherwise,
4545
the behavior is undefined.
4646
sort_order (str): Possible values: asc, desc (default).
47-
Chat summaries are sorted by the creation
47+
Chat info entries are sorted by the creation
4848
date of its last thread.
4949
limit (int): Limit of results per page. Default: 10, maximum: 100.
5050
page_id (str): ID of the page with paginated results.
@@ -142,7 +142,7 @@ def list_archives(self,
142142
filters (dict): Possible request filters.
143143
page_id (str): ID of the page with paginated results.
144144
sort_order (str): Possible values: asc, desc (default).
145-
Chat summaries are sorted by the creation date
145+
Chat info entries are sorted by the creation date
146146
of its last thread.
147147
limit (str): Limit of results per page. Default: 10, maximum: 100.
148148
highlights (dict): Use it to highlight the match of filters.query.

livechat/agent/web/api/v37.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ def list_chats(self,
3737
page_id: str = None,
3838
payload: dict = None,
3939
headers: dict = None) -> httpx.Response:
40-
''' Returns summaries of the chats an Agent has access to.
40+
''' Returns chat info for the chats an Agent has access to.
4141
4242
Args:
4343
filters (dict): Possible request filters. Mustn't change between
4444
requests for subsequent pages. Otherwise,
4545
the behavior is undefined.
4646
sort_order (str): Possible values: asc, desc (default).
47-
Chat summaries are sorted by the creation
47+
Chat info entries are sorted by the creation
4848
date of its last thread.
4949
limit (int): Limit of results per page. Default: 10, maximum: 100.
5050
page_id (str): ID of the page with paginated results.
@@ -142,7 +142,7 @@ def list_archives(self,
142142
filters (dict): Possible request filters.
143143
page_id (str): ID of the page with paginated results.
144144
sort_order (str): Possible values: asc, desc (default).
145-
Chat summaries are sorted by the creation date
145+
Chat info entries are sorted by the creation date
146146
of its last thread.
147147
limit (str): Limit of results per page. Default: 10, maximum: 100.
148148
highlights (dict): Use it to highlight the match of filters.query.

livechat/customer/rtm/api/v36.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ def list_chats(self,
6262
sort_order: str = None,
6363
page_id: str = None,
6464
payload: dict = None) -> RtmResponse:
65-
''' It returns summaries of the chats a Customer participated in.
65+
''' It returns chat info for the chats a Customer participated in.
6666
6767
Args:
6868
limit (int): Chat limit. Default: 10, maximum: 25.
69-
sort_order (str): Possible values: asc, desc (default). Chat summaries are sorted by the
69+
sort_order (str): Possible values: asc, desc (default). Chat info entries are sorted by the
7070
creation date of its last thread.
7171
page_id (str): Page ID.
7272
payload (dict): Custom payload to be used as request's data.

livechat/customer/rtm/api/v37.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ def list_chats(self,
6262
sort_order: str = None,
6363
page_id: str = None,
6464
payload: dict = None) -> RtmResponse:
65-
''' It returns summaries of the chats a Customer participated in.
65+
''' It returns chat info for the chats a Customer participated in.
6666
6767
Args:
6868
limit (int): Chat limit. Default: 10, maximum: 25.
69-
sort_order (str): Possible values: asc, desc (default). Chat summaries are sorted by the
69+
sort_order (str): Possible values: asc, desc (default). Chat info entries are sorted by the
7070
creation date of its last thread.
7171
page_id (str): Page ID.
7272
payload (dict): Custom payload to be used as request's data.

livechat/customer/web/api/v36.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ def list_chats(self,
4646
page_id: str = None,
4747
payload: dict = None,
4848
headers: dict = None) -> httpx.Response:
49-
''' Returns summaries of the chats a Customer participated in.
49+
''' Returns chat info for the chats a Customer participated in.
5050
5151
Args:
5252
limit (int): Limit of results per page. Default: 10, maximum: 25.
5353
sort_order (str): Possible values: asc, desc (default).
54-
Chat summaries are sorted by the creation date of its last thread.
54+
Chat info entries are sorted by the creation date of its last thread.
5555
page_id (str): ID of the page with paginated results.
5656
payload (dict): Custom payload to be used as request's data.
5757
It overrides all other parameters provided for the method.
@@ -84,7 +84,7 @@ def list_threads(self,
8484
chat_id (str): ID of the chat for which threads are to be listed.
8585
limit (str): Limit of results per page. Default: 10, maximum: 25.
8686
sort_order (str): Possible values: asc, desc (default).
87-
Chat summaries are sorted by the creation date of its last thread.
87+
Chat info entries are sorted by the creation date of its last thread.
8888
page_id (str): ID of the page with paginated results.
8989
min_events_count (int): Range: 1-100;
9090
Specifies the minimum number of events to be returned in the response.

livechat/customer/web/api/v37.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ def list_chats(self,
4646
page_id: str = None,
4747
payload: dict = None,
4848
headers: dict = None) -> httpx.Response:
49-
''' Returns summaries of the chats a Customer participated in.
49+
''' Returns chat info for the chats a Customer participated in.
5050
5151
Args:
5252
limit (int): Limit of results per page. Default: 10, maximum: 25.
5353
sort_order (str): Possible values: asc, desc (default).
54-
Chat summaries are sorted by the creation date of its last thread.
54+
Chat info entries are sorted by the creation date of its last thread.
5555
page_id (str): ID of the page with paginated results.
5656
payload (dict): Custom payload to be used as request's data.
5757
It overrides all other parameters provided for the method.
@@ -84,7 +84,7 @@ def list_threads(self,
8484
chat_id (str): ID of the chat for which threads are to be listed.
8585
limit (str): Limit of results per page. Default: 10, maximum: 25.
8686
sort_order (str): Possible values: asc, desc (default).
87-
Chat summaries are sorted by the creation date of its last thread.
87+
Chat info entries are sorted by the creation date of its last thread.
8888
page_id (str): ID of the page with paginated results.
8989
min_events_count (int): Range: 1-100;
9090
Specifies the minimum number of events to be returned in the response.

0 commit comments

Comments
 (0)