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