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