Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 942 Bytes

File metadata and controls

32 lines (23 loc) · 942 Bytes

DeliveryStats

Properties

Name Type Description Notes
total int
pending int
success int
failed int

Example

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)

[Back to Model list] [Back to API list] [Back to README]