diff --git a/src/oauth2.rs b/src/oauth2.rs index 678dc2a..31c1eb4 100644 --- a/src/oauth2.rs +++ b/src/oauth2.rs @@ -94,6 +94,7 @@ impl TokenType { /// A proof key for OAuth2 PKCE ("Proof Key for Code Exchange") flow. #[derive(Debug, Clone)] pub struct PkceCode { + /// The value of the code key. pub code: String, }