Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

CampaignRemoveSuperRequest.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

CampaignRemoveSuperRequest

Properties

Name Type Description Notes
supervisors List[int] [optional]

Example

from callchimp.models.campaign_remove_super_request import CampaignRemoveSuperRequest

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

# convert the object into a dict
campaign_remove_super_request_dict = campaign_remove_super_request_instance.to_dict()
# create an instance of CampaignRemoveSuperRequest from a dict
campaign_remove_super_request_from_dict = CampaignRemoveSuperRequest.from_dict(campaign_remove_super_request_dict)

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