Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.1 KB

AddNigo.md

File metadata and controls

35 lines (26 loc) · 1.1 KB

AddNigo

Properties

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

Example

from formkiq_client.models.add_nigo import AddNigo

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

# convert the object into a dict
add_nigo_dict = add_nigo_instance.to_dict()
# create an instance of AddNigo from a dict
add_nigo_from_dict = AddNigo.from_dict(add_nigo_dict)

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