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