Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.91 KB

File metadata and controls

41 lines (32 loc) · 1.91 KB

ReachV1CampaignsCampaignResource

Properties

Name Type Description Notes
uuid str [optional]
title str [optional]
subject str [optional]
sender_name str [optional]
sender_email str [optional]
template_uuid str The email template this campaign uses. The template title is not exposed. [optional]
status str A fully sent campaign is `publish`. There is no `sent`, `paused` or `archived` status. [optional]
type str [optional]
created_at datetime [optional]
updated_at datetime [optional]
sent_at datetime [optional]
scheduled_at datetime [optional]
statistics ReachV1CampaignsCampaignSummaryStatisticsResource [optional]

Example

from hostinger_api.models.reach_v1_campaigns_campaign_resource import ReachV1CampaignsCampaignResource

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

# convert the object into a dict
reach_v1_campaigns_campaign_resource_dict = reach_v1_campaigns_campaign_resource_instance.to_dict()
# create an instance of ReachV1CampaignsCampaignResource from a dict
reach_v1_campaigns_campaign_resource_from_dict = ReachV1CampaignsCampaignResource.from_dict(reach_v1_campaigns_campaign_resource_dict)

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