tbapi.api.enums.rounding_mode
class
RoundingMode(enum.Enum):
7class RoundingMode(Enum): 8 """Specifies the mode of rounding.""" 9 10 ToNearest = 0 11 """Rounds to the nearest value.""" 12 13 Up = 1 14 """Rounds up.""" 15 16 Down = 2 17 """Rounds down."""
Specifies the mode of rounding.