Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.2 KB

File metadata and controls

28 lines (20 loc) · 1.2 KB

SendWhatsAppCampaignAlternativeChannel

Properties

Name Type Description Notes
sms SmsAltChannel [optional]

Example

from bsg_api.models.send_whats_app_campaign_alternative_channel import SendWhatsAppCampaignAlternativeChannel

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

# convert the object into a dict
send_whats_app_campaign_alternative_channel_dict = send_whats_app_campaign_alternative_channel_instance.to_dict()
# create an instance of SendWhatsAppCampaignAlternativeChannel from a dict
send_whats_app_campaign_alternative_channel_from_dict = SendWhatsAppCampaignAlternativeChannel.from_dict(send_whats_app_campaign_alternative_channel_dict)

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