Source code for kittycad.models.o_auth2_code_challenge_method
from enum import Enum
[docs]
class OAuth2CodeChallengeMethod(str, Enum):
"""The PKCE code challenge method.""" # noqa: E501
"""# Plain code challenge comparison.""" # noqa: E501
PLAIN = "PLAIN"
"""# SHA-256 based PKCE challenge.""" # noqa: E501
S256 = "S256"
def __str__(self) -> str:
return str(self.value)