pub struct SlackOAuthV2AccessTokenResponse {
pub access_token: SlackApiTokenValue,
pub token_type: SlackApiTokenType,
pub scope: SlackApiTokenScope,
pub bot_user_id: Option<SlackUserId>,
pub app_id: SlackAppId,
pub team: SlackTeamInfo,
pub authed_user: SlackOAuthV2AuthedUser,
pub incoming_webhook: Option<SlackOAuthIncomingWebHook>,
}Fields§
§access_token: SlackApiTokenValue§token_type: SlackApiTokenType§scope: SlackApiTokenScope§bot_user_id: Option<SlackUserId>§app_id: SlackAppId§team: SlackTeamInfo§authed_user: SlackOAuthV2AuthedUser§incoming_webhook: Option<SlackOAuthIncomingWebHook>Implementations§
source§impl SlackOAuthV2AccessTokenResponse
impl SlackOAuthV2AccessTokenResponse
pub fn new( access_token: SlackApiTokenValue, token_type: SlackApiTokenType, scope: SlackApiTokenScope, app_id: SlackAppId, team: SlackTeamInfo, authed_user: SlackOAuthV2AuthedUser ) -> Self
pub fn access_token(&mut self, value: SlackApiTokenValue) -> &mut Self
pub fn with_access_token(self, value: SlackApiTokenValue) -> Self
pub fn token_type(&mut self, value: SlackApiTokenType) -> &mut Self
pub fn with_token_type(self, value: SlackApiTokenType) -> Self
pub fn scope(&mut self, value: SlackApiTokenScope) -> &mut Self
pub fn with_scope(self, value: SlackApiTokenScope) -> Self
pub fn bot_user_id(&mut self, value: SlackUserId) -> &mut Self
pub fn reset_bot_user_id(&mut self) -> &mut Self
pub fn mopt_bot_user_id(&mut self, value: Option<SlackUserId>) -> &mut Self
pub fn with_bot_user_id(self, value: SlackUserId) -> Self
pub fn without_bot_user_id(self) -> Self
pub fn opt_bot_user_id(self, value: Option<SlackUserId>) -> Self
pub fn app_id(&mut self, value: SlackAppId) -> &mut Self
pub fn with_app_id(self, value: SlackAppId) -> Self
pub fn team(&mut self, value: SlackTeamInfo) -> &mut Self
pub fn with_team(self, value: SlackTeamInfo) -> Self
pub fn authed_user(&mut self, value: SlackOAuthV2AuthedUser) -> &mut Self
pub fn with_authed_user(self, value: SlackOAuthV2AuthedUser) -> Self
pub fn incoming_webhook(&mut self, value: SlackOAuthIncomingWebHook) -> &mut Self
pub fn reset_incoming_webhook(&mut self) -> &mut Self
pub fn mopt_incoming_webhook( &mut self, value: Option<SlackOAuthIncomingWebHook> ) -> &mut Self
pub fn with_incoming_webhook(self, value: SlackOAuthIncomingWebHook) -> Self
pub fn without_incoming_webhook(self) -> Self
pub fn opt_incoming_webhook( self, value: Option<SlackOAuthIncomingWebHook> ) -> Self
Trait Implementations§
source§impl Clone for SlackOAuthV2AccessTokenResponse
impl Clone for SlackOAuthV2AccessTokenResponse
source§fn clone(&self) -> SlackOAuthV2AccessTokenResponse
fn clone(&self) -> SlackOAuthV2AccessTokenResponse
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenResponse
impl<'de> Deserialize<'de> for SlackOAuthV2AccessTokenResponse
source§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
source§impl From<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse
impl From<SlackOAuthV2AccessTokenResponseInit> for SlackOAuthV2AccessTokenResponse
source§fn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self
fn from(value: SlackOAuthV2AccessTokenResponseInit) -> Self
Converts to this type from the input type.
source§impl PartialEq<SlackOAuthV2AccessTokenResponse> for SlackOAuthV2AccessTokenResponse
impl PartialEq<SlackOAuthV2AccessTokenResponse> for SlackOAuthV2AccessTokenResponse
source§fn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool
fn eq(&self, other: &SlackOAuthV2AccessTokenResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.