Struct kanidm_proto::oauth2::AccessTokenResponse
source · pub struct AccessTokenResponse {
pub access_token: String,
pub token_type: String,
pub expires_in: u32,
pub refresh_token: Option<String>,
pub scope: Option<String>,
pub id_token: Option<String>,
}
Fields§
§access_token: String
§token_type: String
§expires_in: u32
§refresh_token: Option<String>
§scope: Option<String>
Space separated list of scopes that were approved, if this differs from the original request.
id_token: Option<String>
Oidc puts the token here.
Trait Implementations§
source§impl Debug for AccessTokenResponse
impl Debug for AccessTokenResponse
source§impl<'de> Deserialize<'de> for AccessTokenResponse
impl<'de> Deserialize<'de> for AccessTokenResponse
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more