Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

MailV1ForwardersForwarderMailboxResource

Properties

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

Example

from hostinger_api.models.mail_v1_forwarders_forwarder_mailbox_resource import MailV1ForwardersForwarderMailboxResource

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

# convert the object into a dict
mail_v1_forwarders_forwarder_mailbox_resource_dict = mail_v1_forwarders_forwarder_mailbox_resource_instance.to_dict()
# create an instance of MailV1ForwardersForwarderMailboxResource from a dict
mail_v1_forwarders_forwarder_mailbox_resource_from_dict = MailV1ForwardersForwarderMailboxResource.from_dict(mail_v1_forwarders_forwarder_mailbox_resource_dict)

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