Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

UpdateSite.md

File metadata and controls

30 lines (21 loc) · 913 Bytes

UpdateSite

Properties

Name Type Description Notes
title str Title of Site [optional]
status SiteStatus [optional]

Example

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)

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