Skip to content

Commit eba2e47

Browse files
authored
Merge pull request #162 from livechat/ME-526/thinking-indicator-methods-custom-id-param
ME-526: Add custom_id param to send_thinking_indicator
2 parents 6514ddd + 5023da8 commit eba2e47

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

livechat/agent/rtm/api/v36.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -957,6 +957,7 @@ def send_thinking_indicator(self,
957957
visibility: str = None,
958958
title: str = None,
959959
description: str = None,
960+
custom_id: str = None,
960961
payload: dict = None) -> RtmResponse:
961962
''' Sends a thinking indicator.
962963
@@ -965,6 +966,7 @@ def send_thinking_indicator(self,
965966
visibility (str): Possible values: `all`, `agents`.
966967
title (str): Title of the thinking indicator.
967968
description (str): Description of the thinking indicator.
969+
custom_id (str): Custom ID for the thinking indicator.
968970
payload (dict): Custom payload to be used as request's data.
969971
It overrides all other parameters provided for the method.
970972

livechat/agent/web/api/v36.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -992,6 +992,7 @@ def send_thinking_indicator(self,
992992
title: str = None,
993993
description: str = None,
994994
visibility: str = None,
995+
custom_id: str = None,
995996
payload: dict = None,
996997
headers: dict = None) -> httpx.Response:
997998
''' Sends thinking indicator.
@@ -1001,6 +1002,7 @@ def send_thinking_indicator(self,
10011002
title (str): Title of the thinking indicator.
10021003
description (str): Description of the thinking indicator.
10031004
visibility (str): Possible values: `all`, `agents`.
1005+
custom_id (str): Custom ID for the thinking indicator.
10041006
payload (dict): Custom payload to be used as request's data.
10051007
It overrides all other parameters provided for the method.
10061008
headers (dict): Custom headers to be used with session headers.

0 commit comments

Comments
 (0)