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

Class UserPhoto

slack_sdk/scim/v1/user.py:110–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108
109
110class UserPhoto:
111 type: Union[Optional[str], DefaultArg]
112 value: Union[Optional[str], DefaultArg]
113 unknown_fields: Dict[str, Any]
114
115 def __init__(
116 self,
117 type: Union[Optional[str], DefaultArg] = NotGiven,
118 value: Union[Optional[str], DefaultArg] = NotGiven,
119 **kwargs,
120 ) -> None:
121 self.type = type
122 self.value = value
123 self.unknown_fields = kwargs
124
125 def to_dict(self) -> dict:
126 return _to_dict_without_not_given(self)
127
128
129class User:

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected