use objc2::__framework_prelude::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct PKContentVersion(pub NSInteger);
impl PKContentVersion {
#[doc(alias = "PKContentVersion1")]
pub const Version1: Self = Self(1);
#[doc(alias = "PKContentVersion2")]
pub const Version2: Self = Self(2);
#[doc(alias = "PKContentVersion3")]
pub const Version3: Self = Self(3);
#[doc(alias = "PKContentVersion4")]
pub const Version4: Self = Self(4);
#[doc(alias = "PKContentVersionLatest")]
pub const VersionLatest: Self = Self(4);
}
unsafe impl Encode for PKContentVersion {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for PKContentVersion {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}