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
Whether to keep a copy of forwarded messages in the mailbox
Example
fromhostinger_api.models.mail_v1_schema_update_forwarder_keep_copy_request_schemaimportMailV1SchemaUpdateForwarderKeepCopyRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of MailV1SchemaUpdateForwarderKeepCopyRequestSchema from a JSON stringmail_v1_schema_update_forwarder_keep_copy_request_schema_instance=MailV1SchemaUpdateForwarderKeepCopyRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(MailV1SchemaUpdateForwarderKeepCopyRequestSchema.to_json())
# convert the object into a dictmail_v1_schema_update_forwarder_keep_copy_request_schema_dict=mail_v1_schema_update_forwarder_keep_copy_request_schema_instance.to_dict()
# create an instance of MailV1SchemaUpdateForwarderKeepCopyRequestSchema from a dictmail_v1_schema_update_forwarder_keep_copy_request_schema_from_dict=MailV1SchemaUpdateForwarderKeepCopyRequestSchema.from_dict(mail_v1_schema_update_forwarder_keep_copy_request_schema_dict)