Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.28 KB

InlineResponse200159ResultData.md

File metadata and controls

36 lines (27 loc) · 2.28 KB

InlineResponse200159ResultData

Properties

Name Type Description Notes
body str The contents of the autoresponder message's `Body` section. [optional]
charset str The autoresponder's character set. [optional]
var_from str 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

from clientapi_cpanel.models.inline_response200159_result_data import InlineResponse200159ResultData

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

# convert the object into a dict
inline_response200159_result_data_dict = inline_response200159_result_data_instance.to_dict()
# create an instance of InlineResponse200159ResultData from a dict
inline_response200159_result_data_from_dict = InlineResponse200159ResultData.from_dict(inline_response200159_result_data_dict)

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