Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 915 Bytes

AddSite.md

File metadata and controls

31 lines (22 loc) · 915 Bytes

AddSite

Properties

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

Example

from formkiq_client.models.add_site import AddSite

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

# convert the object into a dict
add_site_dict = add_site_instance.to_dict()
# create an instance of AddSite from a dict
add_site_from_dict = AddSite.from_dict(add_site_dict)

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