Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] | |
subject | str | [optional] | |
lists | List[float] | [optional] | |
from_email | str | [optional] | |
content_type | str | [optional] | |
messenger | str | [optional] | |
type | str | [optional] | |
tags | List[str] | [optional] | |
send_later | bool | [optional] | |
send_at | CampaignRequestSendAt | [optional] |
from listmonk.models.campaign_request import CampaignRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CampaignRequest from a JSON string
campaign_request_instance = CampaignRequest.from_json(json)
# print the JSON string representation of the object
print
CampaignRequest.to_json()
# convert the object into a dict
campaign_request_dict = campaign_request_instance.to_dict()
# create an instance of CampaignRequest from a dict
campaign_request_form_dict = campaign_request.from_dict(campaign_request_dict)