Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.28 KB

File metadata and controls

28 lines (20 loc) · 1.28 KB

DetailCampaignSchemaAlternativeChannels

Properties

Name Type Description Notes
sms DetailCampaignSchemaAlternativeChannelsStatistics [optional]

Example

from bsg_api.models.detail_campaign_schema_alternative_channels import DetailCampaignSchemaAlternativeChannels

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

# convert the object into a dict
detail_campaign_schema_alternative_channels_dict = detail_campaign_schema_alternative_channels_instance.to_dict()
# create an instance of DetailCampaignSchemaAlternativeChannels from a dict
detail_campaign_schema_alternative_channels_from_dict = DetailCampaignSchemaAlternativeChannels.from_dict(detail_campaign_schema_alternative_channels_dict)

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