Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

GetCaseNigosResponse.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

GetCaseNigosResponse

Properties

Name Type Description Notes
next str Next page of results token [optional]
nigos List[Nigo] List of Nigos [optional]

Example

from formkiq_client.models.get_case_nigos_response import GetCaseNigosResponse

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

# convert the object into a dict
get_case_nigos_response_dict = get_case_nigos_response_instance.to_dict()
# create an instance of GetCaseNigosResponse from a dict
get_case_nigos_response_from_dict = GetCaseNigosResponse.from_dict(get_case_nigos_response_dict)

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