@@ -1003,14 +1003,13 @@ class MessageContextGlobalSystem(object):
10031003
10041004 :attr str timezone: (optional) The user time zone. The assistant uses the time zone to
10051005 correctly resolve relative time references.
1006- :attr str user_id: (optional) String value provided by the API client that should be
1007- unique per each distinct end user of the service powered by Assistant.
1008- :attr int turn_count: (optional) This property is normally set by the Assistant which
1009- sets this to 1 during the first conversation turn and then increments it by 1 with
1010- every subsequent turn. A turn count equal to 0 (or > 0) informs the Assistant that
1011- this is (or is not) the first turn in a conversation which influences the behavior of
1012- some skills. The Conversation skill uses this to evaluate its `welcome` and
1013- `conversation_start` conditions.
1006+ :attr str user_id: (optional) A string value that identifies the user who is
1007+ interacting with the assistant. The client must provide a unique identifier for each
1008+ individual end user who accesses the application. This user ID may be used for billing
1009+ and other purposes.
1010+ :attr int turn_count: (optional) A counter that is automatically incremented with each
1011+ turn of the conversation. A value of 1 indicates that this is the the first turn of a
1012+ new conversation, which can affect the behavior of some skills.
10141013 """
10151014
10161015 def __init__ (self , timezone = None , user_id = None , turn_count = None ):
@@ -1019,14 +1018,13 @@ def __init__(self, timezone=None, user_id=None, turn_count=None):
10191018
10201019 :param str timezone: (optional) The user time zone. The assistant uses the time
10211020 zone to correctly resolve relative time references.
1022- :param str user_id: (optional) String value provided by the API client that should
1023- be unique per each distinct end user of the service powered by Assistant.
1024- :param int turn_count: (optional) This property is normally set by the Assistant
1025- which sets this to 1 during the first conversation turn and then increments it by
1026- 1 with every subsequent turn. A turn count equal to 0 (or > 0) informs the
1027- Assistant that this is (or is not) the first turn in a conversation which
1028- influences the behavior of some skills. The Conversation skill uses this to
1029- evaluate its `welcome` and `conversation_start` conditions.
1021+ :param str user_id: (optional) A string value that identifies the user who is
1022+ interacting with the assistant. The client must provide a unique identifier for
1023+ each individual end user who accesses the application. This user ID may be used
1024+ for billing and other purposes.
1025+ :param int turn_count: (optional) A counter that is automatically incremented with
1026+ each turn of the conversation. A value of 1 indicates that this is the the first
1027+ turn of a new conversation, which can affect the behavior of some skills.
10301028 """
10311029 self .timezone = timezone
10321030 self .user_id = user_id
0 commit comments