| 141 | |
| 142 | |
| 143 | class UserUpdateResponse(SCIMResponse): |
| 144 | user: User |
| 145 | |
| 146 | @property |
| 147 | def user(self) -> User: |
| 148 | return User(**self.snake_cased_body) |
| 149 | |
| 150 | def __init__(self, underlying: SCIMResponse): |
| 151 | self.underlying = underlying |
| 152 | self.url = underlying.url |
| 153 | self.status_code = underlying.status_code |
| 154 | self.headers = underlying.headers |
| 155 | self.raw_body = underlying.raw_body |
| 156 | self.body = underlying.body |
| 157 | self._snake_cased_body = None |
| 158 | |
| 159 | |
| 160 | class UserDeleteResponse(SCIMResponse): |
no outgoing calls
no test coverage detected