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

Class GroupCreateResponse

slack_sdk/scim/v1/response.py:210–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208
209
210class GroupCreateResponse(SCIMResponse):
211 group: Group
212
213 @property
214 def group(self) -> Group:
215 return Group(**self.snake_cased_body)
216
217 def __init__(self, underlying: SCIMResponse):
218 self.underlying = underlying
219 self.url = underlying.url
220 self.status_code = underlying.status_code
221 self.headers = underlying.headers
222 self.raw_body = underlying.raw_body
223 self.body = underlying.body
224 self._snake_cased_body = None
225
226
227class GroupPatchResponse(SCIMResponse):

Callers 2

create_groupMethod · 0.85
create_groupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected