Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.13 KB

File metadata and controls

28 lines (20 loc) · 1.13 KB

WhatsAppMessageAlternativeChannel

Properties

Name Type Description Notes
sms SmsAltChannel [optional]

Example

from bsg_api.models.whats_app_message_alternative_channel import WhatsAppMessageAlternativeChannel

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

# convert the object into a dict
whats_app_message_alternative_channel_dict = whats_app_message_alternative_channel_instance.to_dict()
# create an instance of WhatsAppMessageAlternativeChannel from a dict
whats_app_message_alternative_channel_from_dict = WhatsAppMessageAlternativeChannel.from_dict(whats_app_message_alternative_channel_dict)

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