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
When the autoreply becomes active. Defaults to now.
[optional]
ends_at
datetime
When the autoreply stops. Omit for an indefinite autoreply.
[optional]
Example
fromhostinger_api.models.mail_v1_schema_upsert_autoreply_request_schemaimportMailV1SchemaUpsertAutoreplyRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of MailV1SchemaUpsertAutoreplyRequestSchema from a JSON stringmail_v1_schema_upsert_autoreply_request_schema_instance=MailV1SchemaUpsertAutoreplyRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(MailV1SchemaUpsertAutoreplyRequestSchema.to_json())
# convert the object into a dictmail_v1_schema_upsert_autoreply_request_schema_dict=mail_v1_schema_upsert_autoreply_request_schema_instance.to_dict()
# create an instance of MailV1SchemaUpsertAutoreplyRequestSchema from a dictmail_v1_schema_upsert_autoreply_request_schema_from_dict=MailV1SchemaUpsertAutoreplyRequestSchema.from_dict(mail_v1_schema_upsert_autoreply_request_schema_dict)