| Name | Type | Description | Notes |
|---|---|---|---|
| total | int | ||
| pending | int | ||
| success | int | ||
| failed | int |
from stratum.models.delivery_stats import DeliveryStats
# TODO update the JSON string below
json = "{}"
# create an instance of DeliveryStats from a JSON string
delivery_stats_instance = DeliveryStats.from_json(json)
# print the JSON string representation of the object
print(DeliveryStats.to_json())
# convert the object into a dict
delivery_stats_dict = delivery_stats_instance.to_dict()
# create an instance of DeliveryStats from a dict
delivery_stats_from_dict = DeliveryStats.from_dict(delivery_stats_dict)