summaryrefslogtreecommitdiffstats
path: root/entities/src/forms/oauth/token/revocation.rs
blob: b64a970bfa583c4987724a9e9c0045409b5994b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use serde::{Deserialize, Serialize};

use crate::{ClientId, ClientSecret, OAuthToken};

/// Form to be submitted when revoking an OAuth token.
///
/// See also the [API Documentation](https://docs.joinmastodon.org/methods/oauth/#revoke)
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
pub struct Revocation {
    client_id: ClientId,
    client_secret: ClientSecret,
    token: OAuthToken,
}

impl Revocation {
    pub fn new(client_id: ClientId, client_secret: ClientSecret, token: OAuthToken) -> Self {
        Self {
            client_id,
            client_secret,
            token,
        }
    }
}