Struct slack_api::oauth::AccessRequest [] [src]

pub struct AccessRequest<'a> {
    pub client_id: &'a str,
    pub client_secret: &'a str,
    pub code: &'a str,
    pub redirect_uri: Option<&'a str>,
}

Fields

Issued when you created your application.

Issued when you created your application.

The code param returned via the OAuth callback.

This must match the originally submitted URI (if one was sent).

Trait Implementations

impl<'a> Clone for AccessRequest<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Default for AccessRequest<'a>
[src]

Returns the "default value" for a type. Read more

impl<'a> Debug for AccessRequest<'a>
[src]

Formats the value using the given formatter.