Struct kanidm_proto::oauth2::AccessTokenResponse [−][src]
pub struct AccessTokenResponse { pub access_token: String, pub token_type: String, pub expires_in: u32, pub refresh_token: Option<String>, pub scope: Option<String>, }
Fields
access_token: String
token_type: String
expires_in: u32
refresh_token: Option<String>
scope: Option<String>
Space seperated list of scopes that were approved, if this differs from the original request.
Trait Implementations
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