Token

Type Alias Token 

Source
pub type Token<C = String, T = String> = Token<C, T>;
Expand description

A set of OAuth client credentials and token credentials used for authorizing requests to the Streaming API.

Aliased Type§

pub struct Token<C = String, T = String> {
    pub client: Credentials<C>,
    pub token: Credentials<T>,
}

Fields§

§client: Credentials<C>

Client credentials.

§token: Credentials<T>

Token/temporary credentials.