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

Class ReadGroupResponse

slack_sdk/scim/v1/response.py:193–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191
192
193class ReadGroupResponse(SCIMResponse):
194 group: Group
195
196 @property
197 def group(self) -> Group:
198 return Group(**self.snake_cased_body)
199
200 def __init__(self, underlying: SCIMResponse):
201 self.underlying = underlying
202 self.url = underlying.url
203 self.status_code = underlying.status_code
204 self.headers = underlying.headers
205 self.raw_body = underlying.raw_body
206 self.body = underlying.body
207 self._snake_cased_body = None
208
209
210class GroupCreateResponse(SCIMResponse):

Callers 2

read_groupMethod · 0.85
read_groupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected