| Name | Type | Description | Notes |
|---|---|---|---|
| sms | MessageApiSchemaAlternativeChannelsSmsDetails | [optional] |
from bsg_api.models.message_api_schema_alternative_channels_sms import MessageApiSchemaAlternativeChannelsSms
# TODO update the JSON string below
json = "{}"
# create an instance of MessageApiSchemaAlternativeChannelsSms from a JSON string
message_api_schema_alternative_channels_sms_instance = MessageApiSchemaAlternativeChannelsSms.from_json(json)
# print the JSON string representation of the object
print(MessageApiSchemaAlternativeChannelsSms.to_json())
# convert the object into a dict
message_api_schema_alternative_channels_sms_dict = message_api_schema_alternative_channels_sms_instance.to_dict()
# create an instance of MessageApiSchemaAlternativeChannelsSms from a dict
message_api_schema_alternative_channels_sms_from_dict = MessageApiSchemaAlternativeChannelsSms.from_dict(message_api_schema_alternative_channels_sms_dict)