Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.21 KB

File metadata and controls

28 lines (20 loc) · 1.21 KB

SendRcsCampaignGroupsAlternativeChannel

Properties

Name Type Description Notes
sms SmsAltChannel [optional]

Example

from bsg_api.models.send_rcs_campaign_groups_alternative_channel import SendRcsCampaignGroupsAlternativeChannel

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

# convert the object into a dict
send_rcs_campaign_groups_alternative_channel_dict = send_rcs_campaign_groups_alternative_channel_instance.to_dict()
# create an instance of SendRcsCampaignGroupsAlternativeChannel from a dict
send_rcs_campaign_groups_alternative_channel_from_dict = SendRcsCampaignGroupsAlternativeChannel.from_dict(send_rcs_campaign_groups_alternative_channel_dict)

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