diff --git a/livechat/agent/web/api/v36.py b/livechat/agent/web/api/v36.py index 8410549..6bf0ade 100644 --- a/livechat/agent/web/api/v36.py +++ b/livechat/agent/web/api/v36.py @@ -37,14 +37,14 @@ def list_chats(self, page_id: str = None, payload: dict = None, headers: dict = None) -> httpx.Response: - ''' Returns summaries of the chats an Agent has access to. + ''' Returns chat info for the chats an Agent has access to. Args: filters (dict): Possible request filters. Mustn't change between requests for subsequent pages. Otherwise, the behavior is undefined. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation + Chat info entries are sorted by the creation date of its last thread. limit (int): Limit of results per page. Default: 10, maximum: 100. page_id (str): ID of the page with paginated results. @@ -142,7 +142,7 @@ def list_archives(self, filters (dict): Possible request filters. page_id (str): ID of the page with paginated results. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation date + Chat info entries are sorted by the creation date of its last thread. limit (str): Limit of results per page. Default: 10, maximum: 100. highlights (dict): Use it to highlight the match of filters.query. diff --git a/livechat/agent/web/api/v37.py b/livechat/agent/web/api/v37.py index 198f484..4963c2a 100644 --- a/livechat/agent/web/api/v37.py +++ b/livechat/agent/web/api/v37.py @@ -37,14 +37,14 @@ def list_chats(self, page_id: str = None, payload: dict = None, headers: dict = None) -> httpx.Response: - ''' Returns summaries of the chats an Agent has access to. + ''' Returns chat info for the chats an Agent has access to. Args: filters (dict): Possible request filters. Mustn't change between requests for subsequent pages. Otherwise, the behavior is undefined. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation + Chat info entries are sorted by the creation date of its last thread. limit (int): Limit of results per page. Default: 10, maximum: 100. page_id (str): ID of the page with paginated results. @@ -142,7 +142,7 @@ def list_archives(self, filters (dict): Possible request filters. page_id (str): ID of the page with paginated results. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation date + Chat info entries are sorted by the creation date of its last thread. limit (str): Limit of results per page. Default: 10, maximum: 100. highlights (dict): Use it to highlight the match of filters.query. diff --git a/livechat/customer/rtm/api/v36.py b/livechat/customer/rtm/api/v36.py index 8c8d7d0..52b66e9 100644 --- a/livechat/customer/rtm/api/v36.py +++ b/livechat/customer/rtm/api/v36.py @@ -62,11 +62,11 @@ def list_chats(self, sort_order: str = None, page_id: str = None, payload: dict = None) -> RtmResponse: - ''' It returns summaries of the chats a Customer participated in. + ''' It returns chat info for the chats a Customer participated in. Args: limit (int): Chat limit. Default: 10, maximum: 25. - sort_order (str): Possible values: asc, desc (default). Chat summaries are sorted by the + sort_order (str): Possible values: asc, desc (default). Chat info entries are sorted by the creation date of its last thread. page_id (str): Page ID. payload (dict): Custom payload to be used as request's data. diff --git a/livechat/customer/rtm/api/v37.py b/livechat/customer/rtm/api/v37.py index 48677d6..976198b 100644 --- a/livechat/customer/rtm/api/v37.py +++ b/livechat/customer/rtm/api/v37.py @@ -62,11 +62,11 @@ def list_chats(self, sort_order: str = None, page_id: str = None, payload: dict = None) -> RtmResponse: - ''' It returns summaries of the chats a Customer participated in. + ''' It returns chat info for the chats a Customer participated in. Args: limit (int): Chat limit. Default: 10, maximum: 25. - sort_order (str): Possible values: asc, desc (default). Chat summaries are sorted by the + sort_order (str): Possible values: asc, desc (default). Chat info entries are sorted by the creation date of its last thread. page_id (str): Page ID. payload (dict): Custom payload to be used as request's data. diff --git a/livechat/customer/web/api/v36.py b/livechat/customer/web/api/v36.py index 412e9da..5c5f106 100644 --- a/livechat/customer/web/api/v36.py +++ b/livechat/customer/web/api/v36.py @@ -46,12 +46,12 @@ def list_chats(self, page_id: str = None, payload: dict = None, headers: dict = None) -> httpx.Response: - ''' Returns summaries of the chats a Customer participated in. + ''' Returns chat info for the chats a Customer participated in. Args: limit (int): Limit of results per page. Default: 10, maximum: 25. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation date of its last thread. + Chat info entries are sorted by the creation date of its last thread. page_id (str): ID of the page with paginated results. payload (dict): Custom payload to be used as request's data. It overrides all other parameters provided for the method. @@ -84,7 +84,7 @@ def list_threads(self, chat_id (str): ID of the chat for which threads are to be listed. limit (str): Limit of results per page. Default: 10, maximum: 25. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation date of its last thread. + Chat info entries are sorted by the creation date of its last thread. page_id (str): ID of the page with paginated results. min_events_count (int): Range: 1-100; Specifies the minimum number of events to be returned in the response. diff --git a/livechat/customer/web/api/v37.py b/livechat/customer/web/api/v37.py index 6fc1646..5070e3d 100644 --- a/livechat/customer/web/api/v37.py +++ b/livechat/customer/web/api/v37.py @@ -46,12 +46,12 @@ def list_chats(self, page_id: str = None, payload: dict = None, headers: dict = None) -> httpx.Response: - ''' Returns summaries of the chats a Customer participated in. + ''' Returns chat info for the chats a Customer participated in. Args: limit (int): Limit of results per page. Default: 10, maximum: 25. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation date of its last thread. + Chat info entries are sorted by the creation date of its last thread. page_id (str): ID of the page with paginated results. payload (dict): Custom payload to be used as request's data. It overrides all other parameters provided for the method. @@ -84,7 +84,7 @@ def list_threads(self, chat_id (str): ID of the chat for which threads are to be listed. limit (str): Limit of results per page. Default: 10, maximum: 25. sort_order (str): Possible values: asc, desc (default). - Chat summaries are sorted by the creation date of its last thread. + Chat info entries are sorted by the creation date of its last thread. page_id (str): ID of the page with paginated results. min_events_count (int): Range: 1-100; Specifies the minimum number of events to be returned in the response.