| 225 | |
| 226 | |
| 227 | class GroupPatchResponse(SCIMResponse): |
| 228 | def __init__(self, underlying: SCIMResponse): |
| 229 | self.underlying = underlying |
| 230 | self.url = underlying.url |
| 231 | self.status_code = underlying.status_code |
| 232 | self.headers = underlying.headers |
| 233 | self.raw_body = underlying.raw_body |
| 234 | self.body = underlying.body |
| 235 | self._snake_cased_body = None |
| 236 | |
| 237 | |
| 238 | class GroupUpdateResponse(SCIMResponse): |
no outgoing calls
no test coverage detected