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

Class GroupUpdateResponse

slack_sdk/scim/v1/response.py:238–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236
237
238class GroupUpdateResponse(SCIMResponse):
239 group: Group
240
241 @property
242 def group(self) -> Group:
243 return Group(**self.snake_cased_body)
244
245 def __init__(self, underlying: SCIMResponse):
246 self.underlying = underlying
247 self.url = underlying.url
248 self.status_code = underlying.status_code
249 self.headers = underlying.headers
250 self.raw_body = underlying.raw_body
251 self.body = underlying.body
252 self._snake_cased_body = None
253
254
255class GroupDeleteResponse(SCIMResponse):

Callers 2

update_groupMethod · 0.85
update_groupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected