Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

File metadata and controls

30 lines (21 loc) · 1.25 KB

MailV1CatchallsCatchallMailboxResource

Properties

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

Example

from hostinger_api.models.mail_v1_catchalls_catchall_mailbox_resource import MailV1CatchallsCatchallMailboxResource

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

# convert the object into a dict
mail_v1_catchalls_catchall_mailbox_resource_dict = mail_v1_catchalls_catchall_mailbox_resource_instance.to_dict()
# create an instance of MailV1CatchallsCatchallMailboxResource from a dict
mail_v1_catchalls_catchall_mailbox_resource_from_dict = MailV1CatchallsCatchallMailboxResource.from_dict(mail_v1_catchalls_catchall_mailbox_resource_dict)

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