Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.3 KB

Nigo.md

File metadata and controls

39 lines (30 loc) · 1.3 KB

Nigo

Properties

Name Type Description Notes
nigo_id str Nigo Identifier [optional]
inserted_date str Inserted Timestamp [optional]
name str Name of Nigo [optional]
description str Description of Nigo [optional]
planned_start_date str Planned Start Date [optional]
start_date str Start Date [optional]
end_date str End Date [optional]
due_date str Due Date [optional]
user_id str User who added Nigo [optional]
status NigoStatus [optional]
metadata Dict[str, object] [optional]

Example

from formkiq_client.models.nigo import Nigo

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

# convert the object into a dict
nigo_dict = nigo_instance.to_dict()
# create an instance of Nigo from a dict
nigo_from_dict = Nigo.from_dict(nigo_dict)

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