| Name | Type | Description | Notes |
|---|---|---|---|
| next | str | Next page of results token | [optional] |
| classifications | List[ClassificationSummary] | List of classifications | [optional] |
from formkiq_client.models.get_classifications_response import GetClassificationsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetClassificationsResponse from a JSON string
get_classifications_response_instance = GetClassificationsResponse.from_json(json)
# print the JSON string representation of the object
print(GetClassificationsResponse.to_json())
# convert the object into a dict
get_classifications_response_dict = get_classifications_response_instance.to_dict()
# create an instance of GetClassificationsResponse from a dict
get_classifications_response_from_dict = GetClassificationsResponse.from_dict(get_classifications_response_dict)