@interface CLPLteCellNeighbor : PBCodable <NSCopying> { struct { unsigned char bandwidth : 1; unsigned char ecn0 : 1; unsigned char maxThroughput : 1; unsigned char neighborType : 1; unsigned char pid : 1; unsigned char rscp : 1; unsigned char rssi : 1; unsigned char uarfcn : 1; } _has; } @property (nonatomic) BOOL hasUarfcn; @property (nonatomic) int uarfcn; @property (nonatomic) BOOL hasPid; @property (nonatomic) int pid; @property (nonatomic) BOOL hasRssi; @property (nonatomic) int rssi; @property (nonatomic) BOOL hasEcn0; @property (nonatomic) int ecn0; @property (nonatomic) BOOL hasRscp; @property (nonatomic) int rscp; @property (nonatomic) BOOL hasBandwidth; @property (nonatomic) unsigned int bandwidth; @property (nonatomic) BOOL hasNeighborType; @property (nonatomic) unsigned int neighborType; @property (nonatomic) BOOL hasMaxThroughput; @property (nonatomic) unsigned int maxThroughput; - (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; @end