Single folder payload.
| Name | Type | Description | Notes |
|---|---|---|---|
| data | V1FoldersFolder |
from hostinger_mail_api.models.v1_folders_resource import V1FoldersResource
# TODO update the JSON string below
json = "{}"
# create an instance of V1FoldersResource from a JSON string
v1_folders_resource_instance = V1FoldersResource.from_json(json)
# print the JSON string representation of the object
print(V1FoldersResource.to_json())
# convert the object into a dict
v1_folders_resource_dict = v1_folders_resource_instance.to_dict()
# create an instance of V1FoldersResource from a dict
v1_folders_resource_from_dict = V1FoldersResource.from_dict(v1_folders_resource_dict)