Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.19 KB

GetBounces200ResponseData.md

File metadata and controls

33 lines (25 loc) · 1.19 KB

GetBounces200ResponseData

Properties

Name Type Description Notes
results List[Bounce] [optional]
query str [optional]
total int [optional]
per_page int [optional]
page int [optional]

Example

from listmonk.models.get_bounces200_response_data import GetBounces200ResponseData

# TODO update the JSON string below
json = "{}"
# create an instance of GetBounces200ResponseData from a JSON string
get_bounces200_response_data_instance = GetBounces200ResponseData.from_json(json)
# print the JSON string representation of the object
print
GetBounces200ResponseData.to_json()

# convert the object into a dict
get_bounces200_response_data_dict = get_bounces200_response_data_instance.to_dict()
# create an instance of GetBounces200ResponseData from a dict
get_bounces200_response_data_form_dict = get_bounces200_response_data.from_dict(get_bounces200_response_data_dict)

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