Points¶
The Points object represents a value of loyalty points.
classDiagram
direction LR
class Points{
bool isZero
float points
string formatPoints
}
It is possible to render the value of the points by rendering the object directly.
Properties¶
Attribute name | Type | Description |
---|---|---|
isZero | bool |
Indicates if the points value is zero. |
points | float |
The value of the points. |
formatPoints | string |
Formatted value of the points. |