1/* eslint-disable */ 2 3export const protobufPackage = 'netsim.common'; 4 5/** Radio Type (BT, WIFI, UWB, BLEBEACON) */ 6export enum ChipKind { 7 /** UNSPECIFIED - Default to UNSPECIFIED */ 8 UNSPECIFIED = 'UNSPECIFIED', 9 BLUETOOTH = 'BLUETOOTH', 10 WIFI = 'WIFI', 11 UWB = 'UWB', 12 /** BLUETOOTH_BEACON - Built-in Bluetooth Beacon for netsim. */ 13 BLUETOOTH_BEACON = 'BLUETOOTH_BEACON', 14 UNRECOGNIZED = 'UNRECOGNIZED', 15} 16