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

Class ReadUserResponse

slack_sdk/scim/v1/response.py:92–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90
91
92class ReadUserResponse(SCIMResponse):
93 user: User
94
95 @property
96 def user(self) -> User:
97 return User(**self.snake_cased_body)
98
99 def __init__(self, underlying: SCIMResponse):
100 self.underlying = underlying
101 self.url = underlying.url
102 self.status_code = underlying.status_code
103 self.headers = underlying.headers
104 self.raw_body = underlying.raw_body
105 self.body = underlying.body
106 self._snake_cased_body = None
107
108
109class UserCreateResponse(SCIMResponse):

Callers 2

read_userMethod · 0.85
read_userMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected