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

Class UserCreateResponse

slack_sdk/scim/v1/response.py:109–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107
108
109class UserCreateResponse(SCIMResponse):
110 user: User
111
112 @property
113 def user(self) -> User:
114 return User(**self.snake_cased_body)
115
116 def __init__(self, underlying: SCIMResponse):
117 self.underlying = underlying
118 self.url = underlying.url
119 self.status_code = underlying.status_code
120 self.headers = underlying.headers
121 self.raw_body = underlying.raw_body
122 self.body = underlying.body
123 self._snake_cased_body = None
124
125
126class UserPatchResponse(SCIMResponse):

Callers 2

create_userMethod · 0.85
create_userMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected