[][src]Struct slack_morphism::api::SlackOAuthV2AccessTokenResponse

pub struct SlackOAuthV2AccessTokenResponse {
    pub access_token: String,
    pub token_type: String,
    pub scope: String,
    pub bot_user_id: Option<String>,
    pub app_id: String,
    pub team: SlackTeamInfo,
    pub authed_user: SlackOAuthV2AuthedUser,
    pub incoming_webhook: Option<SlackOAuthIncomingWebHook>,
}

Fields

access_token: Stringtoken_type: Stringscope: Stringbot_user_id: Option<String>app_id: Stringteam: SlackTeamInfoauthed_user: SlackOAuthV2AuthedUserincoming_webhook: Option<SlackOAuthIncomingWebHook>

Implementations

impl SlackOAuthV2AccessTokenResponse[src]

pub fn new(
    access_token: String,
    token_type: String,
    scope: String,
    app_id: String,
    team: SlackTeamInfo,
    authed_user: SlackOAuthV2AuthedUser
) -> Self
[src]

pub fn access_token(&mut self, value: String) -> &mut Self[src]

pub fn with_access_token(self, value: String) -> Self[src]

pub fn token_type(&mut self, value: String) -> &mut Self[src]

pub fn with_token_type(self, value: String) -> Self[src]

pub fn scope(&mut self, value: String) -> &mut Self[src]

pub fn with_scope(self, value: String) -> Self[src]

pub fn bot_user_id(&mut self, value: String) -> &mut Self[src]

pub fn reset_bot_user_id(&mut self) -> &mut Self[src]

pub fn mopt_bot_user_id(&mut self, value: Option<String>) -> &mut Self[src]

pub fn with_bot_user_id(self, value: String) -> Self[src]

pub fn without_bot_user_id(self) -> Self[src]

pub fn opt_bot_user_id(self, value: Option<String>) -> Self[src]

pub fn app_id(&mut self, value: String) -> &mut Self[src]

pub fn with_app_id(self, value: String) -> Self[src]

pub fn team(&mut self, value: SlackTeamInfo) -> &mut Self[src]

pub fn with_team(self, value: SlackTeamInfo) -> Self[src]

pub fn authed_user(&mut self, value: SlackOAuthV2AuthedUser) -> &mut Self[src]

pub fn with_authed_user(self, value: SlackOAuthV2AuthedUser) -> Self[src]

pub fn incoming_webhook(
    &mut self,
    value: SlackOAuthIncomingWebHook
) -> &mut Self
[src]

pub fn reset_incoming_webhook(&mut self) -> &mut Self[src]

pub fn mopt_incoming_webhook(
    &mut self,
    value: Option<SlackOAuthIncomingWebHook>
) -> &mut Self
[src]

pub fn with_incoming_webhook(self, value: SlackOAuthIncomingWebHook) -> Self[src]

pub fn without_incoming_webhook(self) -> Self[src]

pub fn opt_incoming_webhook(
    self,
    value: Option<SlackOAuthIncomingWebHook>
) -> Self
[src]

Trait Implementations

impl Clone for SlackOAuthV2AccessTokenResponse[src]

impl Debug for SlackOAuthV2AccessTokenResponse[src]

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

impl From<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse[src]

impl PartialEq<SlackOAuthV2AccessTokenResponse> for SlackOAuthV2AccessTokenResponse[src]

impl Serialize for SlackOAuthV2AccessTokenResponse[src]

impl StructuralPartialEq for SlackOAuthV2AccessTokenResponse[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.