Name | Type | Description | Notes |
---|---|---|---|
title | str | Title of Site | [optional] |
status | SiteStatus | [optional] |
from formkiq_client.models.update_site import UpdateSite
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateSite from a JSON string
update_site_instance = UpdateSite.from_json(json)
# print the JSON string representation of the object
print(UpdateSite.to_json())
# convert the object into a dict
update_site_dict = update_site_instance.to_dict()
# create an instance of UpdateSite from a dict
update_site_from_dict = UpdateSite.from_dict(update_site_dict)