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

Class UserUpdateResponse

slack_sdk/scim/v1/response.py:143–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141
142
143class UserUpdateResponse(SCIMResponse):
144 user: User
145
146 @property
147 def user(self) -> User:
148 return User(**self.snake_cased_body)
149
150 def __init__(self, underlying: SCIMResponse):
151 self.underlying = underlying
152 self.url = underlying.url
153 self.status_code = underlying.status_code
154 self.headers = underlying.headers
155 self.raw_body = underlying.raw_body
156 self.body = underlying.body
157 self._snake_cased_body = None
158
159
160class UserDeleteResponse(SCIMResponse):

Callers 2

update_userMethod · 0.85
update_userMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected