Denominations

class models.Denomination.Denomination

Bases: object

Class representing the Denominations

STATUS_MAP = {'00': None, '01': 0.01, '02': 0.05, '03': 0.1, '04': 0.25, '05': 0.5, '06': 1.0, '07': 5.0, '08': 10.0, '09': 20.0, '17': 0.02}
classmethod get_status(key)

Get the status value for the given key.

Parameters:

key (str) – The key for the status.

Returns:

The corresponding status value or an error message if the key is not found.

Return type:

str