Name | Type | Description | Notes |
---|---|---|---|
nigo | AddNigo |
from formkiq_client.models.add_nigo_request import AddNigoRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AddNigoRequest from a JSON string
add_nigo_request_instance = AddNigoRequest.from_json(json)
# print the JSON string representation of the object
print(AddNigoRequest.to_json())
# convert the object into a dict
add_nigo_request_dict = add_nigo_request_instance.to_dict()
# create an instance of AddNigoRequest from a dict
add_nigo_request_from_dict = AddNigoRequest.from_dict(add_nigo_request_dict)