Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 820 Bytes

Bounce.md

File metadata and controls

29 lines (21 loc) · 820 Bytes

Bounce

Properties

Name Type Description Notes
results List[BounceResultsInner] [optional]

Example

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)

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