Name | Type | Description | Notes |
---|---|---|---|
results | List[BounceResultsInner] | [optional] |
from listmonk.models.bounce import Bounce
# TODO update the JSON string below
json = "{}"
# create an instance of Bounce from a JSON string
bounce_instance = Bounce.from_json(json)
# print the JSON string representation of the object
print
Bounce.to_json()
# convert the object into a dict
bounce_dict = bounce_instance.to_dict()
# create an instance of Bounce from a dict
bounce_form_dict = bounce.from_dict(bounce_dict)