| 191 | |
| 192 | |
| 193 | class 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 | |
| 210 | class GroupCreateResponse(SCIMResponse): |
no outgoing calls
no test coverage detected