Type

The type of bike you are using

const onBikeTypeChange = (value: BikeType, timestamp?: Date) => {
    console.log(value, timestamp);
};

COBI.bike.type.read(onBikeTypeChange);
COBI.bike.type.subscribe(onBikeTypeChange);
COBI.bike.type.unsubscribe(onBikeTypeChange);
pageBikeType
Example Response
"CITY"

Last updated