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
Local part of the alias address (the part before the @). The domain is taken from the mailbox. Case-insensitive and stored lowercase; must start and end with a letter or digit; single dots, underscores and hyphens are allowed in between.
Example
fromhostinger_api.models.mail_v1_schema_create_alias_request_schemaimportMailV1SchemaCreateAliasRequestSchema# TODO update the JSON string belowjson="{}"# create an instance of MailV1SchemaCreateAliasRequestSchema from a JSON stringmail_v1_schema_create_alias_request_schema_instance=MailV1SchemaCreateAliasRequestSchema.from_json(json)
# print the JSON string representation of the objectprint(MailV1SchemaCreateAliasRequestSchema.to_json())
# convert the object into a dictmail_v1_schema_create_alias_request_schema_dict=mail_v1_schema_create_alias_request_schema_instance.to_dict()
# create an instance of MailV1SchemaCreateAliasRequestSchema from a dictmail_v1_schema_create_alias_request_schema_from_dict=MailV1SchemaCreateAliasRequestSchema.from_dict(mail_v1_schema_create_alias_request_schema_dict)