from callchimp.models.campaign_add_super_response import CampaignAddSuperResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CampaignAddSuperResponse from a JSON string
campaign_add_super_response_instance = CampaignAddSuperResponse.from_json(json)
# print the JSON string representation of the object
print(CampaignAddSuperResponse.to_json())
# convert the object into a dict
campaign_add_super_response_dict = campaign_add_super_response_instance.to_dict()
# create an instance of CampaignAddSuperResponse from a dict
campaign_add_super_response_from_dict = CampaignAddSuperResponse.from_dict(campaign_add_super_response_dict)