[][src]Trait tmdb_client::apis::AuthenticationApi

pub trait AuthenticationApi {
    fn delete_authentication_session(
        &self,
        session_id: &str
    ) -> Result<SuccessResponse, Error>;
fn get_new_authentication_guest_session(
        &self
    ) -> Result<GuestSessionResponse, Error>;
fn get_new_authentication_session(
        &self,
        request_token: &str
    ) -> Result<SessionResponse, Error>;
fn get_new_authentication_token(
        &self
    ) -> Result<TokenResponseWithExpiration, Error>;
fn get_validate_authentication_token_with_login(
        &self,
        username: &str,
        password: &str,
        request_token: &str
    ) -> Result<TokenResponse, Error>;
fn post_authentication_session_convert4(
        &self,
        body: AccessTokenBody
    ) -> Result<SessionResponse, Error>; }

Required methods

fn delete_authentication_session(
    &self,
    session_id: &str
) -> Result<SuccessResponse, Error>

fn get_new_authentication_guest_session(
    &self
) -> Result<GuestSessionResponse, Error>

fn get_new_authentication_session(
    &self,
    request_token: &str
) -> Result<SessionResponse, Error>

fn get_new_authentication_token(
    &self
) -> Result<TokenResponseWithExpiration, Error>

fn get_validate_authentication_token_with_login(
    &self,
    username: &str,
    password: &str,
    request_token: &str
) -> Result<TokenResponse, Error>

fn post_authentication_session_convert4(
    &self,
    body: AccessTokenBody
) -> Result<SessionResponse, Error>

Loading content...

Implementors

impl AuthenticationApi for AuthenticationApiClient[src]

Loading content...