Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.06 KB

BounceResultsInnerCampaign.md

File metadata and controls

30 lines (22 loc) · 1.06 KB

BounceResultsInnerCampaign

Properties

Name Type Description Notes
id int [optional]
name str [optional]

Example

from listmonk.models.bounce_results_inner_campaign import BounceResultsInnerCampaign

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

# convert the object into a dict
bounce_results_inner_campaign_dict = bounce_results_inner_campaign_instance.to_dict()
# create an instance of BounceResultsInnerCampaign from a dict
bounce_results_inner_campaign_form_dict = bounce_results_inner_campaign.from_dict(bounce_results_inner_campaign_dict)

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