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

Class UserGroup

slack_sdk/scim/v1/user.py:52–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50
51
52class UserGroup:
53 display: Union[Optional[str], DefaultArg]
54 value: Union[Optional[str], DefaultArg]
55 unknown_fields: Dict[str, Any]
56
57 def __init__(
58 self,
59 *,
60 display: Union[Optional[str], DefaultArg] = NotGiven,
61 value: Union[Optional[str], DefaultArg] = NotGiven,
62 **kwargs,
63 ) -> None:
64 self.display = display
65 self.value = value
66 self.unknown_fields = kwargs
67
68 def to_dict(self) -> dict:
69 return _to_dict_without_not_given(self)
70
71
72class UserMeta:

Callers 1

__init__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected