You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The contents of the autoresponder message's `From` field.
[optional]
interval
int
The amount of time, in hours, that the server waits between autoresponder messages to the same address. Note: A value of `0` indicates that the system sends a message for each email received.
[optional]
is_html
int
Whether the body of the autoresponder message begins with an HTML content type declaration. - `1` - Includes an HTML content type declaration. - `0` - Does not include an HTML content type declaration.
[optional]
start
int
When the autoresponder becomes enabled in Unix time.
[optional]
stop
int
When the autoresponder becomes disabled in Unix time.
[optional]
subject
str
The contents of the autoresponder message's `Subject` field.
[optional]
Example
fromclientapi_cpanel.models.inline_response200159_result_dataimportInlineResponse200159ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200159ResultData from a JSON stringinline_response200159_result_data_instance=InlineResponse200159ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200159ResultData.to_json())
# convert the object into a dictinline_response200159_result_data_dict=inline_response200159_result_data_instance.to_dict()
# create an instance of InlineResponse200159ResultData from a dictinline_response200159_result_data_from_dict=InlineResponse200159ResultData.from_dict(inline_response200159_result_data_dict)