Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

File metadata and controls

30 lines (21 loc) · 1.29 KB

MailV1AutorepliesAutoreplyMailboxResource

Properties

Name Type Description Notes
id str Mailbox resource ID [optional]
address str [optional]

Example

from hostinger_api.models.mail_v1_autoreplies_autoreply_mailbox_resource import MailV1AutorepliesAutoreplyMailboxResource

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

# convert the object into a dict
mail_v1_autoreplies_autoreply_mailbox_resource_dict = mail_v1_autoreplies_autoreply_mailbox_resource_instance.to_dict()
# create an instance of MailV1AutorepliesAutoreplyMailboxResource from a dict
mail_v1_autoreplies_autoreply_mailbox_resource_from_dict = MailV1AutorepliesAutoreplyMailboxResource.from_dict(mail_v1_autoreplies_autoreply_mailbox_resource_dict)

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