[][src]Struct feedly_api::models::RefreshTokenResponse

pub struct RefreshTokenResponse {
    pub id: String,
    pub access_token: AccessToken,
    pub expires_in: u32,
    pub token_type: String,
    pub plan: String,
    pub provider: String,
    pub scope: String,
}

Fields

id: String

The feedly user id.

access_token: AccessToken

The new access token.

expires_in: u32

The remaining lifetime of the access token in seconds.

token_type: String

Indicates the type of token returned. At this time, this field will always have the value of Bearer

plan: String

Indicates the user plan (standard, pro or business).

provider: Stringscope: String

https://cloud.feedly.com/subscriptions

Trait Implementations

impl Debug for RefreshTokenResponse[src]

impl<'de> Deserialize<'de> for RefreshTokenResponse[src]

impl Serialize for RefreshTokenResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,