use objc2::__framework_prelude::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct INStickerType(pub NSInteger);
impl INStickerType {
#[doc(alias = "INStickerTypeUnknown")]
pub const Unknown: Self = Self(0);
#[doc(alias = "INStickerTypeEmoji")]
pub const Emoji: Self = Self(1);
#[doc(alias = "INStickerTypeGeneric")]
pub const Generic: Self = Self(2);
}
unsafe impl Encode for INStickerType {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for INStickerType {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}