Skip to content

Commit e06be11

Browse files
authored
fix: add online status
1 parent be950e1 commit e06be11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

chatwoot_client/models/agents_id_body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def availability(self, availability):
102102
:param availability: The availability of this AgentsIdBody. # noqa: E501
103103
:type: str
104104
"""
105-
allowed_values = ["available", "busy", "offline"] # noqa: E501
105+
allowed_values = ["available", "busy", "offline", "online"] # noqa: E501
106106
if availability not in allowed_values:
107107
raise ValueError(
108108
"Invalid value for `availability` ({0}), must be one of {1}" # noqa: E501

0 commit comments

Comments
 (0)