#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[repr(i32)]
pub enum EAuthTokenAppType {
Unknown = 0,
Mobile_SteamApp = 1,
Mobile_ChatApp = 2,
}
impl EAuthTokenAppType {
pub fn from_i32(val: i32) -> Option<Self> {
match val {
x if x == Self::Unknown as i32 => Some(Self::Unknown),
x if x == Self::Mobile_SteamApp as i32 => Some(Self::Mobile_SteamApp),
x if x == Self::Mobile_ChatApp as i32 => Some(Self::Mobile_ChatApp),
_ => None,
}
}
}