Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 3.1 KB

File metadata and controls

38 lines (29 loc) · 3.1 KB

InlineResponse200187ResultData

Properties

Name Type Description Notes
accesstype str The level of access that users have to the mailing list. * `private` - The list has all of the following settings: * The list has private archives. * The administrator must approve subscriptions. * The Mailman directory page does not display the list. * `public` - The list has any of the following settings: * The list has public archives. * Anyone can subscribe. * The Mailman directory page displays the list. [optional]
advertised int Whether the Mailman directory page displays the list. * `1` - The Mailman directory page displays the list. * `0` - The Mailman directory page does not display the list. [optional]
archive_private int Whether the mailing list archive is `private`. * `1` - The mailing list archive is `private`. * `0` - The mailing list archive is `public`. [optional]
desthost InlineResponse200187ResultDataDesthost [optional]
diskused int The disk space that the mailing list currently uses, measured in megabytes (MB). [optional]
humandiskused str The disk space that the mailing list uses, in human-readable format. [optional]
list str The mailing list name and domain. [optional]
listadmin str The mailing list's administrators' email addresses. A comma-separated list of email addresses. [optional]
listid str The mailing list's name and domain. The mailing list name, an underscore (_), and the domain. [optional]
subscribe_policy int The level of control that the mailing list administrator has over new subscribers. * `1` - Anyone can subscribe. The system sends a confirmation email. * `2` - The administrator must approve subscriptions. The system does not send a confirmation email. * `3` - The administrator must approve subscriptions. The system sends a confirmation email. [optional]

Example

from clientapi_cpanel.models.inline_response200187_result_data import InlineResponse200187ResultData

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

# convert the object into a dict
inline_response200187_result_data_dict = inline_response200187_result_data_instance.to_dict()
# create an instance of InlineResponse200187ResultData from a dict
inline_response200187_result_data_from_dict = InlineResponse200187ResultData.from_dict(inline_response200187_result_data_dict)

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