@interface CLPPoiTriggerEvent : PBCodable { struct { unsigned char triggerTimestamp : 1; unsigned char providerIdentifier : 1; unsigned char triggerSubType : 1; unsigned char triggerType : 1; } _has; } @property (nonatomic) unsigned long long muid; @property (nonatomic) BOOL hasProviderIdentifier; @property (nonatomic) int providerIdentifier; @property (nonatomic) BOOL hasTriggerType; @property (nonatomic) int triggerType; @property (nonatomic) BOOL hasTriggerTimestamp; @property (nonatomic) double triggerTimestamp; @property (nonatomic) BOOL hasTriggerSubType; @property (nonatomic) int triggerSubType; - (unsigned long long)hash; - (BOOL)readFrom:(id)a0; - (void)writeTo:(id)a0; - (id)description; - (id)dictionaryRepresentation; - (void)copyTo:(id)a0; - (BOOL)isEqual:(id)a0; - (void)mergeFrom:(id)a0; - (id)copyWithZone:(struct _NSZone { } *)a0; - (int)StringAsTriggerType:(id)a0; - (id)triggerTypeAsString:(int)a0; @end