Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.15 KB

UpdateNigo.md

File metadata and controls

35 lines (26 loc) · 1.15 KB

UpdateNigo

Properties

Name Type Description Notes
name str Name of Nigo [optional]
description str Description of Nigo [optional]
start_date str Start Date [optional]
end_date str End Date [optional]
status NigoStatus [optional]
metadata Dict[str, object] [optional]
document_ids List[str] [optional]

Example

from formkiq_client.models.update_nigo import UpdateNigo

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

# convert the object into a dict
update_nigo_dict = update_nigo_instance.to_dict()
# create an instance of UpdateNigo from a dict
update_nigo_from_dict = UpdateNigo.from_dict(update_nigo_dict)

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