class TransactionAmounts(object):
    """ A class of constants for transaction amounts that will cause different statuses. """

    Authorize = "1000.00"
    Decline = "2000.00"
    Fail = "3000.00"
