squareup/models/enums/oauth_authorization_revoked_event_revoker_type.rs
1//! Model for OauthAuthorizationRevokedEventRevokerType enum
2
3use serde::{Deserialize, Serialize};
4
5/// The type of revoked event type.
6#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
7#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
8pub enum OauthAuthorizationRevokedEventRevokerType {
9 /// The application that requested access to a merchant's data.
10 Application,
11 /// The admin for the merchant.
12 Merchant,
13 /// An internal Square employee.
14 Square,
15}