iro/model/status.py
author Sandro Knauß <knauss@netzguerilla.net>
Thu, 29 Mar 2012 17:21:46 +0200
branchdevel
changeset 259 5d9c24c2cb8d
parent 215 5bacdb7e94d1
child 263 52284710c0b4
permissions -rw-r--r--
iro.model.utils: adding docstrings

class Status:
    '''status for one recipient'''
    def __init__(self, provider, route, costs=0.0, count=0, exID=None):
        self.provider = provider
        self.route = route

        self.costs = costs
        self.count = count
        self.exID = exID