(self, id: str)
| 195 | ) |
| 196 | |
| 197 | def read_group(self, id: str) -> ReadGroupResponse: |
| 198 | return ReadGroupResponse(self.api_call(http_verb="GET", path=f"Groups/{quote(id)}")) |
| 199 | |
| 200 | def create_group(self, group: Union[Dict[str, Any], Group]) -> GroupCreateResponse: |
| 201 | return GroupCreateResponse( |