MCPcopy Create free account
hub / github.com/slackapi/python-slack-sdk / GroupMember

Class GroupMember

slack_sdk/scim/v1/group.py:7–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6
7class GroupMember:
8 display: Union[Optional[str], DefaultArg]
9 value: Union[Optional[str], DefaultArg]
10 unknown_fields: Dict[str, Any]
11
12 def __init__(
13 self,
14 *,
15 display: Union[Optional[str], DefaultArg] = NotGiven,
16 value: Union[Optional[str], DefaultArg] = NotGiven,
17 **kwargs,
18 ) -> None:
19 self.display = display
20 self.value = value
21 self.unknown_fields = kwargs
22
23 def to_dict(self):
24 return _to_dict_without_not_given(self)
25
26
27class GroupMeta:

Callers 4

test_group_crudMethod · 0.90
test_groupsMethod · 0.90
test_groupsMethod · 0.90
__init__Method · 0.85

Calls

no outgoing calls

Tested by 3

test_group_crudMethod · 0.72
test_groupsMethod · 0.72
test_groupsMethod · 0.72