Converts key to snake_case :param key: key to convert into snake_case :return: key after case conversion
(key: str)
| 168 | |
| 169 | @staticmethod |
| 170 | def to_api_case(key: str) -> str: |
| 171 | """ Converts key to snake_case |
| 172 | |
| 173 | :param key: key to convert into snake_case |
| 174 | :return: key after case conversion |
| 175 | """ |
| 176 | return to_snake_case(key) |
| 177 | |
| 178 | def get_scopes_for(self, user_provided_scopes: Optional[Union[list, str, tuple]]) -> list: |
| 179 | """ Returns a list of scopes needed for each of the |