@Uint24 decorator is syntactic sugar for @Relation(PrimitiveSymbol.u24).
@Uint24
@Relation(PrimitiveSymbol.u24)
Using this decorator specifies that the decorated property should be interpreted as an unsigned 24 bits integer.
The type of the class the decorator is applied to.
The type of the decorated property.
class Protocol { @Uint24 data: number} Copy
class Protocol { @Uint24 data: number}
Relation
@Uint24
decorator is syntactic sugar for@Relation(PrimitiveSymbol.u24)
.Using this decorator specifies that the decorated property should be interpreted as an unsigned 24 bits integer.