@interface CLPNRCellNeighbor : PBCodable <NSCopying> { struct { unsigned char bandwidth : 1; unsigned char bwpSupport : 1; unsigned char ecn0 : 1; unsigned char maxThroughput : 1; unsigned char neighborType : 1; unsigned char nrarfcn : 1; unsigned char pid : 1; unsigned char rscp : 1; unsigned char rssi : 1; unsigned char saOrNsaNeighbor : 1; unsigned char scs : 1; } _has; } @property (nonatomic) BOOL hasNrarfcn; @property (nonatomic) int nrarfcn; @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 hasScs; @property (nonatomic) unsigned int scs; @property (nonatomic) BOOL hasSaOrNsaNeighbor; @property (nonatomic) unsigned int saOrNsaNeighbor; @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; @property (nonatomic) BOOL hasBwpSupport; @property (nonatomic) unsigned int bwpSupport; - (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