| 208 | |
| 209 | |
| 210 | class 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 | |
| 227 | class GroupPatchResponse(SCIMResponse): |
no outgoing calls
no test coverage detected