Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

CampaignAddSuperResponse.md

File metadata and controls

29 lines (20 loc) · 1 KB

CampaignAddSuperResponse

Properties

Name Type Description Notes
message str [optional]

Example

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)

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