Name | Type | Description | Notes |
---|---|---|---|
nigo | UpdateNigo | [optional] |
from formkiq_client.models.update_nigo_request import UpdateNigoRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateNigoRequest from a JSON string
update_nigo_request_instance = UpdateNigoRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateNigoRequest.to_json())
# convert the object into a dict
update_nigo_request_dict = update_nigo_request_instance.to_dict()
# create an instance of UpdateNigoRequest from a dict
update_nigo_request_from_dict = UpdateNigoRequest.from_dict(update_nigo_request_dict)