File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
from datetime import datetime
2
- from typing import Dict
2
+ from typing import Dict , Optional
3
3
4
4
from cdo_local_uuid import local_uuid
5
5
from pytz import timezone
@@ -1342,14 +1342,14 @@ def __init__(
1342
1342
class FacetMessagethread (FacetEntity ):
1343
1343
def __init__ (
1344
1344
self ,
1345
- visibility = None ,
1345
+ visibility : Optional [ bool ] = None ,
1346
1346
participants = None ,
1347
1347
messages = None ,
1348
1348
):
1349
1349
"""
1350
1350
A message thread facet is a grouping of characteristics unique to a running
1351
1351
commentary of electronic messages pertaining to one topic or question.
1352
- :param visibility: A boolean value to indicate if the theead is private (False) or
1352
+ :param visibility: A boolean value to indicate if the thread is private (False) or
1353
1353
public (True).
1354
1354
:param participants: Array of Account ObservableObject,
1355
1355
:param messages: Array of Message ObservableObjects.
You can’t perform that action at this time.
0 commit comments