Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.26 KB

File metadata and controls

28 lines (20 loc) · 1.26 KB

MessageApiSchemaAlternativeChannelsSms

Properties

Name Type Description Notes
sms MessageApiSchemaAlternativeChannelsSmsDetails [optional]

Example

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)

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