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 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`.
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
fromclientapi_cpanel.models.inline_response200187_result_dataimportInlineResponse200187ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200187ResultData from a JSON stringinline_response200187_result_data_instance=InlineResponse200187ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200187ResultData.to_json())
# convert the object into a dictinline_response200187_result_data_dict=inline_response200187_result_data_instance.to_dict()
# create an instance of InlineResponse200187ResultData from a dictinline_response200187_result_data_from_dict=InlineResponse200187ResultData.from_dict(inline_response200187_result_data_dict)