Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 958 Bytes

File metadata and controls

28 lines (20 loc) · 958 Bytes

SmsCampaignResponse

Properties

Name Type Description Notes
data CampaignSchema

Example

from bsg_api.models.sms_campaign_response import SmsCampaignResponse

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

# convert the object into a dict
sms_campaign_response_dict = sms_campaign_response_instance.to_dict()
# create an instance of SmsCampaignResponse from a dict
sms_campaign_response_from_dict = SmsCampaignResponse.from_dict(sms_campaign_response_dict)

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