class Status:
'''status object -- the resulat of one :class:`iro.controller.task.Task`.'''
def __init__(self, provider, route, costs=0.0, count=0, exID=None):
"""
:param `iro.offer.provider.Provider` provider: a provider object
:param string route: a route of the provider
:param `decimal.Decimal` costs: costs for sending this message
:param integer count: count of sended messages
:param string exID: ID of external API
"""
self.provider = provider
self.route = route
self.costs = costs
self.count = count
self.exID = exID